:root {
  --orange: #F7941D;
  --dark-grey: #414040;
  --light-grey: #D6D6D6;
}

* {
  font-family: 'Roboto', sans-serif;
}

html, body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  color: var(--dark-grey);
}

/* Hide scrollbar -- #page scrolls not body */
#page::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#page {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* general */

a, a:visited, a:focus, a:hover {
  color: var(--orange);
  text-decoration: none;
}

/* privacy */

#privacy {
  width: min(600px, 100vw - 30px);
  margin: 100px auto 175px auto;
}

h1 {
  text-align: center;
  color: var(--orange);
  font-size: 18pt;
  margin-top: 1em;
  margin-bottom: 2em;
}

h3 {
  font-size: 12pt;
}

h4 {
  font-weight: normal;
  text-decoration: underline;
  display: inline;
}

li {
  margin-bottom: 1em;
}

.text-right {
  text-align: right;
}

#privacy .logo {
  display: block;
  margin: 0 auto;
}

#privacy p {
  font-size: 12pt;
  margin-bottom: 2em;
  line-height: 1.5em;
}

/* footer */

footer {
  background-color: #4A4A4A;
  color: white;
  text-align: center;
  padding-bottom: 50px;
}

footer .content {
  width: min(700px, 100vw - 64px);
  margin: 0 auto;
  padding: 30px;
}

footer .logo {
  max-width: calc(100vw - 20);
}

footer .social a {
  margin-left: 0.5em;
  margin-right: 0.5em;
}

footer a, footer a:visited, footer a:focus, footer a:hover {
  color: white;
}
