* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  font-size: 14px; }
  @media screen and (min-width: 480px) {
    html {
      font-size: 16px; } }

body {
  background-color: #000;
  color: #CCC;
  font-family: mojito, sans-serif;
  font-weight: 400;
  font-style: normal; }

.content__section {
  height: calc(100vh - 3rem); }

.content--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation-delay: 2s;
          animation-delay: 2s; }

.content__intro__text {
  padding: .5rem;
  font-size: 5rem;
  text-align: center; }
