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

html {
  overflow: hidden;
}
body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  position: relative;
  padding: 20px;
  overflow: hidden;
}

body::before {
  z-index: -1;
  content: "";
  overflow: hidden;
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url("/img/bg-step.png");
  filter: blur(8px);
  background-size: cover;
  background-repeat: no-repeat;
  animation: zoomBg 20s infinite alternate ease-in-out;
}

@keyframes zoomBg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

body::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background-color: #00000088;
  opacity: 0;
  animation: fadeIn 2s forwards;
}

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

.wrapper {
  text-align: center;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: floatUp 1.5s ease-out;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 30px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

h1 {
  font-size: 80px;
  color: white;
  -webkit-text-stroke: 3px black;
  font-family: "Lato", sans-serif;
  margin-bottom: 30px;
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.buttons {
  display: flex;
  gap: 40px;

  align-items: center;
  justify-content: center;
}

.buttons a {
  display: block;
  display: block;
  max-width: 200px;
  width: 100%;
  text-decoration: none;
  border: 2px solid black;
  background: white;
  color: black;
  font-family: "Lato";
  font-size: 50px;
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInButtons 1.5s ease forwards;
}

@keyframes fadeInButtons {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.buttons a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.upshuns-footer {
  position: absolute;
  color: #fff;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  animation: fadeIn 2s 0.5s forwards;
  opacity: 0;
}

.upshuns-footer a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  h1 {
    font-size: 50px;
    -webkit-text-stroke: 2px black;
  }
  .buttons a {
    font-size: 32px;
    max-width: 150px;
    border-radius: 15px;
  }
  .buttons {
    gap: 20px;
  }
  .upshuns-footer {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
    -webkit-text-stroke: 1px black;
  }
  .buttons a {
    font-size: 24px;
    max-width: 120px;
  }
}
