@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');
.history {
    width: 250px;
    height: 100px;
    background-color: rgba(223, 88, 88, 0.7);
    border: solid white 1px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 9px;
}

.history img {
    max-width: 90px;
    max-height: 50px;
    height: auto;
}

.history p {
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px 0 0 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

@keyframes shake-history {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-10px); }
    40%, 80% { transform: translateX(10px); }
}

.shake-history-animation {
    animation: shake-history 0.5s ease;
}

@keyframes zoomInOut-history {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.zoom-history-animation {
    animation: zoomInOut-history 0.5s ease;
}

.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1rem;
    animation: fall linear infinite;
    opacity: 0.8;
    user-select: none;
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0.1;
    }
}

#gw {
  background: url('https://i.ytimg.com/vi/_lsEERSC0Go/maxresdefault.jpg') center/cover no-repeat;
  position: relative;
  padding: 20px 60px;
  max-width: 500px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.75);
  text-align: center;
  z-index: 1;
}

#gw::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  z-index: 0;
  border-radius: 10px;
}

#gw p {
  position: relative;
  font-family: 'Creepster', cursive;
  color: #ff2a2a;
  font-size: 30px;
  margin-bottom: 24px;
  z-index: 1;
  text-shadow: 2px 2px 6px black;
  letter-spacing: 1px;
}

#gw button {
  position: relative;
  background-color: #990000;
  color: white;
  border: none;
  padding: 10px 26px;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Arial Black', sans-serif;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 0 8px #ff1a1a;
  transition: all 0.25s ease;
}

#gw button:hover {
  background-color: #e60000;
  box-shadow: 0 0 18px #ff1a1a, 0 0 28px #ff1a1a;
  transform: scale(1.04);
}