.outer-container {
  background-color: #9E829C;
  display: flex;
  font-family: "Roboto", sans-serif;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.inner-container {
  background-color: white;
  min-height: 100vh;
  outline: 2px solid black;
  width: 75%;
}

.header-nav-container {
  background-color: #00000036;
  display: flex;
  height: 4rem;
  justify-content: end;
  position: fixed;
  top: 0;
  width: 75%;
}

.header-nav {
  align-self: center;
  text-align: center;
  width: 50%;
}

a {
  color: #3A3E3B;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0.75rem;
  padding: 0.25rem;
  text-decoration: none;
}

a:hover {
  background-color: #3a3e3b34;
  padding: 0.25rem;
}

h1, h2 {
  text-align: center;
  font-weight: bold;
}

h1 {
  font-size: 4rem;
  margin: 4rem 0px 2rem 0;
}

h2 {
  font-size: 3rem;
  margin: 2rem;
}

.controls-list {
  margin: 0 8rem;
}

.controls-list > li {
  margin: 2rem 0;
}

h3 {
  font-size: 2rem;
}

.commands-list {
  padding: 0.25rem 0;
  font-size: 1.2rem;
}

.commands-list > li {
  line-height: 1.5rem;
  padding: 0.75rem 0;
}

.commands-list b {
  font-weight: bold;
}

.commands-list span {
  color: red;
}

.command-descriptions-list {
  margin-left: 2rem;
}

/* Media breakpoints */

@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 4vw;
  }

  h2 {
    font-size: 3vw;
  }
} 
