.page {
  min-height: 100vh;
  background: url("../img/background.jpg") center/cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  overflow-x: hidden;
}

.page__snow {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 99;
  opacity: 0.7;
  animation: snowfall 12s linear infinite;
}

@keyframes snowfall {
  from {
    transform: translateY(-10%);
  }
  to {
    transform: translateY(20%);
  }
}
.header__title {
  font-size: 38px;
  color: white;
  text-shadow: 0 0 10px black;
  margin-bottom: 25px;
}

.card {
  width: 420px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  z-index: 100;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.card__tree {
  width: 160px;
  display: block;
  margin: 0 auto 15px;
}

.card__title {
  font-size: 32px;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 0 10px black;
}

.card__text {
  color: white;
  font-size: 18px;
  margin-bottom: 25px;
  text-shadow: 0 0 8px black;
}

.card__button {
  background: #ff467e;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.card__button:hover {
  background: rgb(255, 19, 90.4378378378);
  transform: scale(1.05);
}

/*# sourceMappingURL=main.css.map */
