body {
  background-color: #21252e;
  color: #f2f1d3;
  font-family: Courier;
  background-image: url('gamefinal.png');
  background-size: cover;
}
*{
    box-sizing: border-box;
}
.text{
    color:#f2f1d3;
    font-family: 'Courier New', Courier, monospace;
}
/*Center Content*/
.mainBox{
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: hidden;
}
.content{
    border-style: outset;
    border-color:#f2f1d3;
    box-sizing: content-box;
    width: 50%;
    height: 50%;
}
.header{
  border-color: #f2f1d3;
  border-top-style: outset;
  border-right-style: hidden;
  border-left-style: hidden;
  border-bottom-style: outset;
  text-align: center;
  background-color: #0b0e14;
  size: 100%;
}

/* Toolbar and Toolbar Buttons*/
.toolBar{
    border-style:solid;
    border-color:#0b0e14; 
    background-color: #0b0e14;
}
.toolButtons{
    color:#f2f1d3;
    background-color: #21252e;
    border-style: outset;
    border-color:#f2f1d3; 
    margin: 0px;
}
.toolButtons:hover{
    cursor: pointer;
}
.toolButtons:active{
    cursor: pointer;
    border-style: inset;
    background-color: #0b0e14;
}
/*Still part of the toolbar, just the dropdown menu*/
.dropContainer{
    float: right;
}
.dropdown{
    position: relative;
}
.dropContent{
    display:none;
    position: absolute;
    background-color:#0b0e14;
    z-index: 1;
    min-width: 133px;
    overflow: auto;
    float: right;
    border-style: inset;
    border-color: #f2f1d3;
}
.dropContent a {
    color:#f2f1d3;
    display:block;
    text-decoration: none;
    padding-left: 5px;
}
.dropContent a:active{
    background-color: #0b0e14;
}
.dropContent a:hover{
    background-color:#21252e;
}
.show {display: block;}

/*NOT the mainbox, mainbody is the main content on the page. Mainbox is the main container*/
/*also the three columns, Left, Right, and Center*/
.mainBody{
    background-color: #21252e;
    border-color: #f2f1d3;
    border-top-style: ridge;
}
.mainBody:after{
    display: table;
    clear:both;
}
.leftBody{
    border-color: #f2f1d3;
    border-right-style: inset;
    border-left-style: hidden;
}
.centerBody{
    border-style:hidden;
    width: 50%;
}
.rightBody{
    border-color:#f2f1d3;
    border-right-style: hidden;
    border-left-style: inset;
}
.tinyCol{
    width: 25%;
    border-top-style: hidden;
    border-bottom-style: hidden;
}
.column{
    float:left;
    padding: 10px;
    min-height: 200px;
    background-color:#0b0e14;
}