html, body {
    height: 100%;
}
body {
    display: flex;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
}

@font-face {
    font-family: 'fortrackregular';
    src: url('https://cwilliamson29.github.io/EtchAndSketch/css/fortrackregular-webfont.woff2') format('woff2'),
         url('https://cwilliamson29.github.io/EtchAndSketch/css/fortrackregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

#container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#gridDrawBox{
    width: 800px;
    height: 600px;
    /*background-color: rgb(207, 207, 207);*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
}
.gridSquare{
    border: 1px solid rgb(182, 182, 182);
}
#easOutSide{
    width: 950px;
    height: 750px;
    background-color: rgb(182, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 38px;
    border: 2px solid black;
}
#easHead{
    width: 920px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*background-color: purple;*/
}
#easHead h1{
    margin-top: 8px;
    font-size: 60px;
    font-family: fortrackregular;
}
#easFoot{
    width: 920px;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /*background-color: purple;*/
}
#easInSide{
    width: 810px;
    height: 610px;
    background-color: rgb(207, 207, 207);
    border: 2px solid black;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
#easFootMiddle{
    width: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.knobOutside{
    width: 56px;
    height: 56px;
    background-color: white;
    border: 2px solid black;
    border-radius: 50%;
}
.knobInside{
    width: 50px;
    height: 50px;
    margin: 1px;
    background-color: white;
    border: 2px dotted black;
    border-radius: 50%;
}
.knobInside2{
    width: 46px;
    height: 46px;
    margin: 1px;
    background-color: white;
    border: 1px solid black;
    border-radius: 50%;
}
.footButtons{
    color: white;
    background-color: rgb(119, 0, 0);
    width: 85px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 35%;
}
.footButtons:hover{
    color: white;
    width: 81px;
    background-color: rgb(192, 0, 0);
    border: 3px solid black;
}
#footer{
    display: flex;
    justify-content: center;
    align-items: center;
}
.edgeButtons{
    color: white;
    background-color: rgb(119, 0, 0);
    width: 150px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-top: none;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.edgeButtons:hover{
    color: white;
    background-color: rgb(192, 0, 0);
}