html,
body {
  font-family: "Bio-Sans", helvetica, arial, sans-serif;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 0.07rem;
  margin: 0;
  background-color: #111;
  color: #999;
}

a {
  text-decoration: none;
  font-size: inherit;
  color: #FFF;
}

.container {
  max-width: 906px;
  margin: 0.5rem auto;
  padding: 1rem;
}

.logo img {
  width: 2rem;
  display: block;
  margin: auto;
  padding: 1rem;
  opacity: .2;
}

h1 {
  font-family: "Bebas-Kai", helvetica, arial, sans-serif;
  text-align: center;
  color: #FFF;
}

h1.heading {
  font-size: 3rem;
  font-weight: normal;
  padding: 1rem 0;
  line-height: 3rem;
  margin: 1rem auto;
}

.iframe {
  margin: auto;
}

.introduction {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
  
.introduction p {
  padding: 0;
  margin: 0.5rem 0;
  font-size: 1.5rem;
  line-height: 2rem;
  justify-content: center;
}


.description {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0;
}

.description ul {
  list-style: square;
  margin: 0 1.5rem;
  padding: 1.5rem 0;
  flex-grow: 1;
}

.description li {
  font-size: 1.5rem;
  line-height: 2rem;
}

footer {
  background-color: #111;
  padding: 0;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.copyright {
  flex-basis: 20rem;
  font-size: 0.8rem;
  color: rgb(55, 55, 55);
  margin: 0;
  text-align: center;
}

p.disclaimer {
  font-size: 0.8rem;
  line-height: 1.2rem;
  color: rgb(55, 55, 55);
  text-align: center;
}

@media only screen and (max-width:834px) {

  html,
  body {
    font-size: 14px;
    font-weight: 300;
  }

  .logo img {
    padding: 2rem;
  }

  .description {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
  }
}

@media only screen and (max-width:520px) {

  html,
  body {
    font-size: 12px;
  }

  footer .container {
    flex-wrap: wrap;
  }

  .copyright {
    flex: auto;
  }
}

@media only screen and (max-width:375px) {

  html,
  body {
    font-size: 10px;
  }

}