@font-face {
    font-family: myfont;
    src: url(/scribblyscrabblydoo/font/to-the-point-font/ToThePointRegular-n9y4.ttf);
}
* {
    font-family: myfont;
    box-sizing: border-box;
}
body { 
    background-color: #2b3436;
    color: #45b572;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0; right: 0; left: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
}
.titlebox {
    display: flex;
    flex-direction: column;
    width: 100%;
   align-items: center;
}
h1 {
    font-size: 100px;
    margin-bottom: 0;
}
p {
    font-size: 40px;
    margin-top: 20px;
}
.mainbod {
    display: flex;
    flex-direction: row;
    margin-top: 7em;
    justify-content: space-around;
}
.options {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #525452;
    height: 30em;
    width: 20em;
    margin-left: 6em;
    border-radius: 2em;
}
h2 {
    font-size: 40px;
    margin: 5px;
    margin-bottom: 30px;
}
button {
    width: 4em;
    height: 1em;
    margin-top: 35px;
    font-size: 40px;
    text-align: center;
    background-color: #9da19e;
    border-radius: 10px;
}
.gridSquare {
    height: 1rem;
    width: 1rem;
    background-color: white;
    border: solid black 1px;
    
}
#grid {
        background-color: black;
        display: flex;
        flex-wrap: wrap;
        width: 40rem;
        height: 36rem;
        margin-left: 6rem;
        margin-right: 6em;
}
