body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: white;
  flex-flow: column;
  font-family: "Lato", serif;
  font-weight: 300;
  font-style: normal;
}

img {
  max-width: 300px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 3s ease-out forwards;
}

.name {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 7s ease-out forwards;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 18px;
  text-align: center;
  width: 100%;
  border-bottom: 0px dotted #00000020;
  padding: 0 0 1em 2em;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.links {
  padding: 2em;
}

.links ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.links li {
  margin: 0 10px;
}

.links a {
  text-decoration: none;
  color: #0073e6;
  font-size: 16px;
  text-transform: lowercase;
}

.links a:hover {
  text-decoration: underline;
}
