* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

html,
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  color: #fff;
}

body {
  display: flex;
  flex-direction: column;
}

a {
  color: #fff;
}

body {
  font-family: VT323, Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  background: #111;
}

main,
footer {
  padding: 1em;
}

main {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.column {
  font-size: 8vmax;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header {
  color: red;
  font-family: "DigitalNumbers";
  font-weight: 700;
  font-size: 2vmax;
}

.header,
.content {
  text-align: center;
}

.content {
  font-family: "DigitalNumbers";
  color: green;
}

.spacer {
  display: none;
}

footer {
  flex-shrink: 0;
  text-align: center;
}

.brand-logo {
  max-height: 40px;
}

.privacy {
  margin-top: 4em;
  font-size: small;
}

.privacy h2 {
  font-size: 1.25rem;
}

.privacy h3 {
  font-size: 1rem;
}

@media (min-width: 576px) {
  main {
    flex-direction: row;
    justify-content: center;
  }
  .header {
    font-size: 2vw;
  }
  .column {
    font-size: 7vw;
  }
  .spacer {
    display: inherit;
  }
}
