/* output file = homel.css */
html {
  font-size: 62.5%;
}

body {
  font-family: Roboto, sans-serif;
  font-size: 1.6rem;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FF4B00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 2rem;
}
@media (max-width: 576px) {
  .content {
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.content__brand {
  height: auto;
  margin-bottom: 6rem;
  width: 24rem;
}
@media (min-width: 768px) {
  .content__brand {
    width: 30rem;
  }
}
.content__title {
  color: #fff;
  font-size: 3.8rem;
  font-weight: 300;
  margin: 0;
  max-width: 76rem;
  text-align: center;
}
@media (min-width: 1200px) {
  .content__title {
    font-size: 4.5rem;
  }
}