/* BODY */
/* sets the background of the site, placeholder black */
body {
    background-color: black;
    background-image: url("Images/Arcade Lever art Clean.png");
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
}
/* adds margins to the sides */
#body_container {
    max-width: 1000px;
    min-width: 800px;
    background-color: ghostwhite;
    margin-left: 25%;
    margin-right: 25%;
}
/* holds the website title */
#body_top {
    padding-top: 5px;
    margin-bottom: 10px;
    
}
/* science still doesn't know why this sucks so much ass */
#flex_container {
    display: flex;
    flex-direction: row;
}
/* formats the navbar */
#body_left {
    padding-left: 20px;
    padding-right: 5px;
    padding-top: 10px;
    width: 10%;
    min-width: 110px;
    white-space: nowrap;
    float: left;
}
/* body text goes here */
#body_offset {
    padding: 5px;
    margin-right: 100px;
    min-height: 170px;
}

/* NAVBAR */
/* vertical-style navbar */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100px;
    background-color: #333;
}
/* navbar boxes, different size than horizontal */
li a {
    display: block;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
}
/* change fill on hover */
li a:hover {
    background-color: #111;
}
/* highlight active page */
.active {
    background-color: #1d91b4;
}

/* LINKBOX */
/* adds a grey line to the left side. use with h4, p, and a tags */
.linkbox {
    margin: 0px 10px 10px 10px;
    padding-left: 5px;
    border-left: 3px solid;
    border-color: gray;
}

/* BUTTONCLASS */
/* makes buttons appear red */
.button-class {
			background-color: #912314;
			/* Red */
			border: 2px;
			color: White;
			padding: 10px 10px;
			text-align: center;
			text-decoration: none;
			display: inline-block;
			font-size: 16px;
			margin: 4px 2px;
			cursor: pointer;
			border-radius: 4px;
/* TEXT */
h1 {
    font-family: 'Open Sans', sans-serif;
    margin: 10px;
    text-align: center
}
h2, h3 {
    font-family: 'Open Sans', sans-serif;
    margin: 5px;
}
h4 {
    font-family: 'Open Sans', sans-serif;
}
p {
    font-family: Arial, sans-serif;
    /*text-indent: 2em;*/
}