* {
    font-family: "Open Sans", sans-serif;
}

a {
    text-decoration: none;
}

body {
    background-color: rgb(0, 0, 60);
    width: 60vw;
    margin: auto;
    overflow: hidden;
}

.header {
    width: 100%;
    height: 15vh;
    box-sizing: border-box;
    padding: 10px;
    /* border: 1px solid white; */

    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 4vmin;
    
    color: white;
}

.canvas {
    width: 100%;
    height: 100%;
}

.canvasEnclosure {
    margin: auto;
    height: 50vh;
    width: 50vh;
    box-sizing: border-box;
    border: 1px solid white;
}

.bottom {
    width: 100%;
    height: calc(100vh - 15vh - 50vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.submitButton {
    height: 7.5vh;
    width: 50%;
    padding: 10px;
    box-sizing: border-box;

    
    color: black;
    font-size: 4vmin;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    
    background-color: aquamarine;
    border-radius: 3vmin;
}

.submitButton:hover {
    font-size: 4.2vmin;
}

@media screen and (max-width: 768px) {
    body {
        background-color: rgb(0, 0, 60);
        width: 100vw;
        margin: auto;
    }
    
    .canvas {
        width: 100%;
        height: 100%;
    }

    .canvasEnclosure {
        width: 100vw;
        height: 100vw;
    }
    
    .bottom {
        height: calc(100vh - 100vw - 15vh)
    }
}

