body {
  background: #101010;
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  animation: fadeIn 0.4s ease-out;
}

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

p {
  font-family: "IBM Plex Mono", monospace;
  color: #fff;
  font-size: 1em;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards;
}

p:nth-of-type(1) {
  animation-delay: 0.1s;
}

p:nth-of-type(2) {
  animation-delay: 0.2s;
}

.links-list {
  list-style: none;
  padding: 0;
  margin: 2em 0;
  font-family: "IBM Plex Mono", monospace;
}

.links-list li {
  margin: 1em 0;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards;
}

.links-list li:nth-child(1) {
  animation-delay: 0.3s;
}

.links-list li:nth-child(2) {
  animation-delay: 0.4s;
}

.links-list li:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.links-list a {
  color: #f9f9f9;
  text-decoration: none;
  font-size: 1em;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

.links-list a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: #4a9eff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.links-list a:hover {
  color: #4a9eff;
  transform: translateY(-2px);
}

.links-list a:hover::after {
  width: 100%;
}

a {
  color: #f9f9f9;
}

@media (max-width: 480px) {
  body {
    min-height: 100svh;
  }

  .content {
    padding: 16px;
  }

  .links-list {
    margin: 1.5em 0;
  }

  .links-list li {
    margin: 0.75em 0;
  }
}
