@import url("https://fonts.googleapis.com/css?family=Lato:400,900&display=swap");

* {
  margin: 0;
  padding: 0;
}
body {
  margin: auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
  min-height: 100%;
  color: black;
  font-family: "Lato", sans-serif;
  line-height: 1.3;
  text-align: center;
}
.footer {
  font-size: 1rem;
}
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 30px;
}

/* LARGE SCREEN */
@media screen and (min-width: 601px) {
  body {
    max-width: 50%;
  }
  img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    margin-bottom: 2rem;
  }
  h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
  h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }

  p {
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  a {
    color: #111;
    border-bottom: 2px solid #111;
    text-decoration: none;
  }
  a:hover {
    border-bottom: 2px solid red;
    color: #111;
  }
}

/* SMALL SCREEN */
@media screen and (max-width: 650px) {
  body {
    max-width: 90%;
  }
  img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 200px;
    border-radius: 100%;
    margin-bottom: 2rem;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }

  p {
    font-weight: 5vw;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  a {
    color: #111;
    border-bottom: 2px solid #111;
    text-decoration: none;
  }
  a:hover {
    border-bottom: 2px solid red;
    color: #111;
  }
}
