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

body {
  padding: 2rem;
  height: 100svh;
  font-family: "Montserrat", sans-serif;
  background: #0f0f0f;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  transform: scale(0.7);
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: logo-move 0.8s ease forwards;
  animation-delay: 1.2s;
  transform: translateX(196px);
}

.logo {
  width: 94.21px;
  height: 100px;
}

.logo-upper {
  animation: upper 1.4s ease forwards;
}

.logo-lower {
  animation: lower 1.4s ease forwards;
}

.title {
  font-size: 96px;
  font-weight: 800;
  background: linear-gradient(to left, #000 20%, #fff 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 500% auto;
  opacity: 0;
  transform: translateY(20px);
  animation: title-reveal 1.5s ease forwards;
  animation-delay: 2s;
}

.slogan {
  font-size: 24px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  animation: slogan-reveal 1.2s ease forwards;
  animation-delay: 3s;
}

p {
  text-align: center;
}

.socials {
  display: flex;
  gap: 1.6rem;
}

.socials a {
  color: hsl(0, 0%, 84%);
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: white;
}

/* Keyframes */
@keyframes upper {
  from {
    transform: translateY(-15%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes lower {
  from {
    transform: translateY(15%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes logo-move {
  100% {
    transform: translateX(0);
  }
}

@keyframes title-reveal {
  0% {
    background-position: 100% 50%;
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    background-position: 0% 50%;
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slogan-reveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1024px) {
  header {
    transform: scale(0.6);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  header {
    transform: scale(0.5);
  }
}