body {
    margin: 0;

    background-color: #1F1F1F;
}

#grid {
    display: grid;
    grid-template-columns: .1fr .80fr .1fr;
    grid-template-rows: 10vh 2.5vh 85vh 2.5vh;
}

#title{
    display: flex;
    grid-area: 1 / 1 / 2 / 5;
    background-color: #4800FF;

    font-family: Arial, Helvetica, sans-serif;
    border-bottom: 12px solid #2F00B2;

}

#title h1{
    letter-spacing: .1em;
    height: 3vh;
    margin: auto 0 auto 2em;
    color: white;

    font-size: 3vh;
}

#canvas-container{
    /*column, row, column, row*/
    grid-area: 3 / 2 / 4 / 3;

    display: flex;

    justify-content: center;
    align-items: center;
    width: 100%;
}

#canvas-wrapper {
    display: flex;

    width: 100%;
    height: 50%;
    max-width: 1750px;
    aspect-ratio: 3 / 2;
    justify-content: center;
    align-items: center;
}

#canvas-container canvas{
    width: 80%;
    height: auto;
    display: block;

    border: 12px solid #2F00B2;
    border-radius: 12px;
    
    filter: drop-shadow(rgba(0, 0, 0, 0.5) 5px 5px 1px);
}