/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Colors
Dreamcast/Eggshell White: #f0ead6
Dreamcast Red/Orange: #B83420
SEGA Blue: #1177BBD
My Signature Color: #7744CC 
*/


body {
  background-image: url("Images/Purple Stars.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #f0ead6;
  font-family: Courier;
}

.overall-header {
  text-align:center;
  font-size:60px;
}

.center {text-align:center;}


.sidenav {
  color: black;
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #f0ead6;
  overflow-x: hidden;
  padding-top: 20px;
  border: solid black;
}

.flex-parent {
display: flex;
margin-left: 300px;
margin-right: 300px;
}

.flex-parent-c {
display: flex;
margin-left: 600px;
margin-right: 600px;
margin-top: 10px;
}

.flex-child-L {
background-color: #117BBD;
flex: 1 2 auto;
margin-right: 10px;
}

.flex-child-R {
background-color: #B83420;
flex: 1 2 auto;
margin-right: 10px;
}

.flex-child-C {
background-color: black;
flex: 1 2 auto;
margin-right: 10px;
}
