body {
  background-color: #0a2e1d; /* Deep Christmas Green */
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  margin: 0;
  overflow-x: hidden;
}

img {
  max-width: 300px;
  min-width: 150px;
  height: auto;
}

.container {
  padding: 50px 20px;
}

h1 {
  font-size: 5vw;
  color: #d42426; /* Festive Red */
  text-shadow: 2px 2px #fff;
}

.message-box {
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid #d4af37; /* Gold */
  padding: 20px;
  display: inline-block;
  border-radius: 15px;
  margin-top: 20px;
  max-width: 600px;
  text-align: left;
}

#address {
  text-align: left;
  padding-left: 2%;
}

/* Snow Animation */
.snow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
