html,
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #93BB5E;
  min-height: 100vh;
}

div.wrapper {
  display: flex;
  flex-direction: column;
}

footer {
  background-color: #2a2f33;
  padding: .5rem;
}

footer p {
  color: whitesmoke;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  text-align: center;
  padding: 2rem;
}

header img {
  max-height: 10rem;
  max-width: 100%;
  text-align: center;
}

div#error-page {
  background-color: white;
  border-radius: 1rem;
  margin: 0 2rem 2rem 2rem;
  padding: 1rem;
}

main#root {
  text-align: center;
}

main#root div:not(.grid_container) {
  background-color: white;
  border-radius: 1rem;
  margin: 2rem;
  padding: 1rem;
}

main#root div#badges {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  margin: 0;
  padding: 0;
}

div#badges img{
  max-width: 126px;
}

div#image_grid {
  display: grid;
  grid-column: auto;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

div.grid_container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

div.grid_container div {
  grid-column: 2;
}

div#image_grid img {
  border-radius: .5rem;
  max-height: 100%;
  max-width: 100%;
}

main#privacy {
  background-color: white;
  border-radius: 1rem;
  margin: 0 2rem 2rem 2rem;
  padding: 1rem;
}

ul li:first-child {
  margin-bottom: .25em;
}

div#contact {
  overflow: scroll;
}