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

body {
  background-color: black;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: normal;
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.gradient {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: url('noise_and_grad.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  animation: gradientFadeIn 0.75s ease-in-out 1s forwards;
}

@keyframes gradientFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.8;
  }
}

.content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 671px;
  max-width: 90%;
}


.logo {
  width: 200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.85);
  animation: logoScaleIn 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes logoScaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.message a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #444;
  transition: border-color 0.2s;
}

.message a:hover {
  border-bottom-color: #fff;
}

.message {
  font-size: 20px;
  text-align: center;
  line-height: 1.6;
  max-width: 633px;
  opacity: 0;
  animation: messageFadeIn 0.6s ease-in-out 0.95s forwards;
}

@keyframes messageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
