* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@600;700&family=Inter:wght@400;500&display=swap");
body {
  background-color: #2b2b2b;
  height: 100vh;
  margin: 0;
  color: #e0d5c6;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(43, 43, 43, 0.8), rgba(43, 43, 43, 0.8)), url("../img/background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  animation: subtleBackgroundAnimation 20s infinite alternate ease-in-out;
}

@keyframes subtleBackgroundAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.logo {
  width: 200px;
  margin-bottom: 20px;
  opacity: 0;
}
.subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  opacity: 0;
  margin-bottom: 20px;
  color: #fff;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  opacity: 0;
}
.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  transform: translateY(-5px);
  color: #e0d5c6;
}
.container {
  width: 100%;
  max-width: 450px;
}
.button {
  background-color: #e0d5c6;
  color: #2b2b2b;
  padding: 18px;
  margin: 15px 0;
  text-align: left;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  position: relative;
  overflow: hidden;
}
.button-2 {
  background-color: #2b2b2b !important;
  color: #fff !important;
  border: 1px solid #e0d5c6;
}
.button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.button:active {
  transform: translateY(0);
}
.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.button:hover::after {
  opacity: 1;
}
.button i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}
@media (max-width: 1024px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .button {
    width: 100%;
  }
}