body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: #f2f2f2;
}

.container {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  height: 100vh;
}

h1 {
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  animation: fade-in 2.5s ease-in-out;
}

p {
  font-size: 1.4rem;
  text-align: center;
  margin-left: 41rem;
  margin-top: -3.4rem;
  animation: fade-in 6s ease-in-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 8;
  }
}