body {
  background-color: #000000;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 20px;
}

h1 {
  font-size:45px;
  margin-top: -5px;
  color:#ff5151;
  text-align:center;
  font-family:MecaGothix;
  letter-spacing: 5px;
}

h2 {
  font-size:25px;
  color:#ff5151;
  text-align:center;
  font-family:MecaGothix;
  letter-spacing: 5px;
}

p {
  font-family:Californian FB;
  color:#ff5151;
  font-size:18px; 
  text-align:center;
  letter-spacing: 1px;
}

/* visited link */
a:visited {
  color: #5e96ff;
}

/* mouse over link */
a:hover {
  color: #acc0ff;
}


.container {
  width: 100%;
  display: grid;
  grid-template-areas: "sidebar main";
  grid-template-columns: 200px auto;
}

.sidebar {
  grid-area: sidebar;
  height: 50vh;
  background-color: black;
  border: 5px double red;
  margin-left: 50px;
  margin-right: 10px;
}

.main {
  grid-area: main;
  height: 100vh;
  background-color: black;
  border: 5px double red;
  margin-left: 10px;
  margin-right: 50px;
}


/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 10px;
  margin-left: 20px;
}

.left {
  width: 20%;
  border: 5px double red;
  height: 30vh;
}

.right {
  width: 25%;
  border: 5px double red;
  height: 100vh;
}

.middle {
  width: 40%;
  border: 5px double red;
  height: 100vh;
}
.row {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}