body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #FDF8F2;
  background-image: url('../images/background.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  z-index: 2;
}

.logo {
  width: 200px;
  height: auto;
  margin-bottom: 60px;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.buttons img {
  height: 108px;
  width: auto;
}

.buttons a {
  display: block;
  text-decoration: none;
  transition: transform .2s;
}

.buttons a:hover {
  transform: scale(1.1);
}

.not-clickable {
  pointer-events: none;
  opacity: 0.8;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 8px;
  z-index: 2;
}

.legal-links a {
  color: #333;
  text-decoration: none;
}

.confetti {
  position: absolute;
  width: 100px;
  height: 100px;
  animation: confetti-translate 3s ease-in-out infinite alternate;
  z-index: 1;
}

.confetti svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.confetti-yellow {
  left: 25%;
  top: 30%;
  animation-delay: calc(-3s * 0.2);
}

.confetti-blue-1 {
  right: 20%;
  bottom: 10%;
  animation-delay: calc(-3s * 0.2);
}

.confetti-blue-2 {
  left: 5%;
  top: 50%;
  transform: rotate(90deg);
  animation-delay: calc(-3s * 0.5);
}

.confetti-green {
  right: 2%;
  bottom: 30%;
  animation-delay: calc(-3s * 0.8);
}

.confetti-red {
  right: 10%;
  top: 7%;
  animation-delay: calc(-3s * 0.6);
}

@keyframes confetti-translate {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@media (max-width: 800px) {

  .main {
    flex-grow: 0.2;
  }
  
  .confetti {
    display: none;
  }
  
  .logo {
    width: 140px;
    height: auto;
    margin-bottom: 48px;
  }

  .buttons {
    flex-direction: column;
    gap: 8px;
  }

  .buttons img {
    height: 80px;
    width: auto;
  }

  .legal-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    z-index: 2;
  }
}