@font-face {
  font-family: Catharsis;
  src: url("./fonts/Catharsis.TTF");
}

:root {
  --color1: #0E2148;
  --color2: #483AA0;
  --color3: #7965C1;
  --color4: #E3D095;
}

html {
  background-color: black;
  background-image: url("./img/bg/space_bg.gif");
}

body {
  margin: 20px auto;
  max-width: 1020px;
  color: white;
}

header {
  margin-top: -10px;
  width: 100%;
  background-color: var(--color2);
  display: inline-block;
}

header h1 {
  font-family: courier, monospace;
  font-size: 20px;
  font-style: italic;
  margin: 1px;
}

#main {
  display: grid;
  grid-template-columns: 1fr 1fr 3fr;
  background-color: var(--color1);
  border: 1px solid white;
  text-align: center;
  margin-bottom: 20px;
}

#main h1 {
  grid-column: 1/4;
  grid-row: 1/2;
  font-family: Catharsis;
  font-size: 3em;
}

#available {
  grid-column: 1/2;
  grid-row: 2/3;
}

#mapholder, #docholder, #cassetteholder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: courier, monospace;
}

#mapholder h2:hover, #docholder h2:hover, #cassetteholder h2:hover, #mapmenu p:hover {
  cursor: pointer;
}

#menudiv {
  grid-column: 2/3;
  grid-row: 2/3;
}

#display {
  grid-column: 3/4;
  grid-row: 2/3;
}

#display img {
  width: 98%;
}

#docmenu a, #docmenu p {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 3px;
}

#bottomdiv {
  grid-column: 1/4;
  grid-row: 3/4;
  width: 100%;
  margin-top: 8px;
}