body {
  font-family: 'Roboto Condensed', sans-serif;
  color: #000;
  font-size: 3rem;
  line-height: 1.2;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 4em;
  line-height: 44px;
  font-weight: 700;
}

p {
  max-width: 40ch;
  margin-bottom: 0px;
}

a {
  display: inline-block;
  color: #000;
  text-decoration: underline;
  cursor: pointer;
}

.body {
  font-size: 5rem;
  line-height: 1.2;
}

.paragraph {
  font-family: 'PT Sans', sans-serif;
}

.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  min-height: 20rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1920px) {
  a {
    -webkit-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
  }

  a:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 2rem;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 1rem;
  }
}

