* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background-color: #1A1A1A;
  color: #E2E2E2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 2rem;
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
}

a {
  color: #FCC720;
  text-decoration: none;
  font-weight: 700;
}

strong, b {
  font-weight: 700;
}

h1, .h1 {
  font-size: 3.75rem;
  font-family: "Inria Sans", Roboto, sans-serif;
}

.logo {
  height: 200px;
  width: auto;
}
@media (max-width: 470px) {
  .logo {
    height: 150px;
  }
}
.logo + .logo {
  margin-left: 1rem;
}