body {
  font-family:'Lato', sans-serif;
  background-color: #F9F9F9;
  color: #333230;
}

#main {
  display: flex;
  align-items: center;
  flex-direction: column;
}

h1 {
    font-size: 50px;
    font-weight: 900;
}

.content {
    text-align: center;
    line-height: 1.5em;
    padding: 20px;
}

a {
  color: black;
  text-decoration:none;
  border-bottom:1px solid black;
}

a:hover {
  padding-bottom:1px;
  transition: 0.1s ease-out;
  color: #333230;
}

@media only screen and (max-width: 500px) {
    .content {
        width:50%;
    }
}

@media only screen and (max-width: 800px) {
    .content {
        width:50%;
    }
}