/* Base styles for mobile-first design */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #00b47f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh; /* Ensure body covers full viewport height */
  width: 100vw;
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main container for content */
.container {
  background-color: #006f4e;
  padding: 50px;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Title style */
h1 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
  transition: font-size 0.3s ease;
}

/* Paragraph styling */
p {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}

/* Santa Icon */
.santa-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

/* Highlighted text */
.stay-tuned {
  font-weight: bold;
  color: #24c69c;
}

/* Snow Image 1 - Top Left (existing one) */
.snow-image {
  position: absolute; /* Absolute positioning */
  top: 40px; /* Distance from the top */
  left: 30px; /* Distance from the left */
  height: 80px; /* Snow image size */
  width: 80px;
}

/* Snow Image 2 - Top Right */
.snow-image-2 {
  position: absolute;
  top: 80px; /* Adjust top position */
  right: 30px; /* Distance from the right */
  height: 60px;
  width: 60px;
}

/* Snow Image 3 - Bottom Left */
.snow-image-3 {
  position: absolute;
  bottom: 80px; /* Distance from the bottom */
  left: 30px; /* Distance from the left */
  height: 60px;
  width: 60px;
}

/* Snow Image 4 - Bottom Right */
.snow-image-4 {
  position: absolute;
  bottom: 10px; /* Distance from the bottom */
  right: 30px; /* Distance from the right */
  height: 80px;
  width: 80px;
}

.snow-image, .snow-image-2, .snow-image-3, .snow-image-4 {
  position: absolute;
  animation: snow-fall 5s infinite linear;
}

.snow-image-2 {
  animation-delay: 3s;
}

.snow-image-3 {
  animation-delay: 2s;
}

.snow-image-4 {
  animation-delay: 1s;
}

/* Snow animation */
@keyframes snow-fall {
  0% {
      top: -100px;
  }
  100% {
      top: 100%;
  }
}

/* Media Query for devices with a width of 600px or less (i.e. mobile screens) */
@media (max-width: 600px) {
  .container {
      padding: 30px;
      width: 90%; /* Make the container slightly larger */
  }

  h1 {
      font-size: 28px; /* Adjust the title size for smaller screens */
  }

  p {
      font-size: 16px; /* Adjust paragraph text size for readability */
  }

  .santa-icon {
      font-size: 40px; /* Reduce the icon size for mobile */
  }

  .footer {
      font-size: 12px; /* Slightly smaller footer text */
  }
}
.snow-image, .snow-image-2, .snow-image-3, .snow-image-4 {
  height: 50px;  /* Reduce the size for mobile screens */
  width: 50px;
}

/* Adjust positions for mobile screens */
.snow-image {
  top: 20px; /* Move up a little to fit better */
  left: 15px; /* Slightly reduce left distance */
}

.snow-image-2 {
  top: 40px; /* Move it a bit lower to fit the screen */
  right: 15px; /* Slightly reduce right distance */
}

.snow-image-3 {
  bottom: 15px; /* Adjust the bottom for better visibility */
  left: 15px; /* Adjust the left for better alignment */
  height: 30px;
  width: 30px;
}

.snow-image-4 {
  bottom: 15px; /* Move it closer to the bottom edge */
  right: 15px; /* Adjust the right distance */

}
