@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

body {
  width: 100vw;
  height: 100vh;
  outline: none;
  margin: 0;
  border: none;
  padding: 0;
  font-family: "Noto Sans", "Verdana", "Arial", sans-serif;
  font-size: 1.6vh;
  color: #FFFFFF;
  background-color: #000000;
}

h1,
h2,
h3 {
  color: #FFAA00;
}

a {
  color: #FFFFFF;
  text-decoration: none;
}

table {
  margin-left: auto;
  margin-right: auto;
}

th,
td {
  padding-left: 1em;
  padding-right: 1em;
}

img {
  max-width: 100%;
  outline: none;
  margin: 0;
  border: none;
  border-radius: 1em;
  padding: 0;
}

video {
  max-width: 100%;
  outline: none;
  margin: 0;
  border: none;
  border-radius: 1em;
  padding: 0;
}

code {
  font-family: "Courier New", Courier, monospace;
  font-size: .8em;
}

pre code {
  font-family: monospace;
  font-size: .8em;
  display: block;
  outline: none;
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 1em;
  color: #FFFFFF;
  background: #000055;
  overflow-x: scroll;
}

.page {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "a" "b" "c";
}

.header {
  grid-area: a;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: start;
}

.main {
  grid-area: b;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}

.document {
  display: block;
  width: 75vw;
  outline: none;
  margin: 0;
  border: none;
  padding: 1em;
  background-color: #222222;
}

.selection {
  height: 6em;
  width: 12em;
  outline: none;
  margin: 0.5em 0.5em;
  border: none;
  border-radius: 1em;
  padding: 1em 1em;
  justify-content: left;
  align-content: end;
  font-size: 1.4em;
  background-size: cover;
  background-position: center;
}

.footer {
  grid-area: c;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly ;
  align-content: end;
  padding-top: 1em;
  padding-bottom: 4em;
}

@media (width > 133vh) {
  .document {
    width: 100vh;
  }
}
