body {
  font-family: Helvetica, sans-serif;
  background-color: rgb(17, 25, 31);
  color: rgb(237, 240, 243);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
}

h1,
p,
.email {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

h1 {
  animation-delay: 0.7s;
  font-size: 6rem;
}

p,
.email {
  animation-delay: 2s;
  font-size: 2rem;
}

.email {
  height: 4vh;
}

@media (max-width: 767px) {
  h1 {
    font-size: 3rem;
  }

  p,
  .email {
    animation-delay: 2s;
    font-size: 1rem;
  }
}

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