body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #000c19, #003166);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
}

.snow-container {
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vi-container {
  position: relative;
  width: 300px; 
  height: auto;
  cursor: pointer;
}

.vi {
  width: 100%;
  border-radius: 50%;
  transition: transform 0.6s ease-in-out;
}

.vi:active {
  animation: spin 1s ease-in-out;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease-in-out, visibility 0s 0.6s;
}

.vi:active ~ .hidden {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.6s ease-in-out, visibility 0s;
}

.merry-christmas {
  font-size: 1.5rem;
  color: white;
  z-index: 2;
  margin-top: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.title {
  margin-top: 20px; 
  font-size: 1.8rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(720deg);
  }
}

.snowflake {
  position: absolute;
  top: -10px;
  font-size: 20px;
  color: white;
  animation: fall linear infinite;
}

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