/* reserve space so page content isn't hidden under the fixed navs */
body {
  padding-top: calc(25px + 1px); /* navs height + borders */
  overflow: hidden; /* i dont know what makes this page scrollable, cave man fix */
}

main {
  min-height: 66vh;
  max-height: 95vh;
  width: 33vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px;
  border-radius: 7px;
  border: 1px white solid;
}

aside {
  min-height: 66vh;
  max-height: 95vh;
  width: 33vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px;
  border-radius: 7px;
  border: 1px white solid;
}

#mainContent {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}

/* base fixed nav */
nav {
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 25px;
  border-bottom: 1px solid white;
  z-index: 100;
  background-color: #262626;
  max-height: 5vh;
}

nav.site-nav {
  top: 0;
}

footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #262626;
    border-top: 1px solid white;
    height: 25px;
    box-sizing: border-box;
    z-index: 90;
    max-height: 5vh;
}

#playerList {
  white-space: pre-line;
}