﻿body {
  background-color: rgb(238, 238, 238);
  color: black;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}

nav {
  background-color: black;
  padding: 1rem 0;
  width: 100%;
  color: rgb(200, 200, 200);
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: right;
  max-width: 63rem;
  padding: 0 1rem;
  margin: 0 auto;
  list-style-type: none;
}
nav ul li {
  white-space: nowrap;
}
nav ul li div.language-selector {
  text-transform: uppercase;
  font-weight: 600;
  text-underline-offset: 0.25rem;
  margin-left: 1rem;
  cursor: pointer;
}
nav ul li div.language-selector.active {
  text-decoration: underline;
}

main {
  width: 100%;
  max-width: 63rem;
  margin: 0 auto;
  display: grid;
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
}
main h1 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0;
  color: rgb(42, 97, 154);
  text-transform: uppercase;
}

footer {
  width: 100%;
  background-color: black;
  color: rgb(160, 160, 160);
  font-size: 0.85rem;
}
footer div.wrapper {
  max-width: 63rem;
  margin: 0 auto;
}
footer div.wrapper div {
  padding: 1rem 1rem;
  float: right;
}
footer div.wrapper div h1 {
  margin: 0 0 0.125rem 0;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgb(200, 200, 200);
  line-height: 1.5;
  text-transform: none;
}
footer div.wrapper div p {
  margin: 0;
  white-space: nowrap;
}
footer div.wrapper div a {
  color: rgb(160, 160, 160);
}
