* {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 2;
  color: black;
  background-color: white;
}

@keyframes slideIn {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

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

.container {
  margin-top: 5vh;
  margin-left: 5vw;
  animation: 500ms ease-out 0s 1 slideIn;
}

h1 {
  font-weight: 600;
}

a {
  text-decoration: none;

}

a:hover {
  font-style: italic;
}
