body {
    margin: 0;
    display: flex;  
    flex-direction: column;
    align-items: center;
    background-color: black;
    font-family: 'Roboto Mono', monospace;
}

canvas {
    background-color: black;
    display: block;
}

img {
    width: 720px; 
    height: 480px;

}

.d-none {
    display: none;
}

.positionRelative {
    position: relative;
}

.buttonStyleStart {
    background-color: #ffcf00;
    border-radius: 10px;
    font-size: 30px;
    padding: 5px;
    border: 3px #bf0000 dotted;
    font-family: 'Roboto Mono', monospace;
    color: #bf0000;
    transition: all 225ms ease-in-out;
    position: absolute;
    bottom: 12px;
    left: 310.5px;    
}


.buttonStyleStart:hover {
    background-color: #ffa800;
    transition: all 225ms ease-in-out;
    cursor: pointer;
}

.positionButtons {
    width: 720px;
    display: flex;
    justify-content: space-evenly;
}

.buttonStyleFull {
    background-color: #ffcf00;
    border-radius: 10px;
    font-size: 30px;
    padding: 5px;
    border: 3px #bf0000 dotted;
    font-family: 'Roboto Mono', monospace;
    color: #bf0000;
    transition: all 225ms ease-in-out;
    margin-top: 10px;
}

.buttonStyleFull:hover {
    background-color: #ffa800;
    transition: all 225ms ease-in-out;
    cursor: pointer;
}

.buttonStyleRestart {
    background-color: #ffcf00;
    border-radius: 10px;
    font-size: 30px;
    padding: 5px;
    border: 3px #bf0000 dotted;
    font-family: 'Roboto Mono', monospace;
    color: #bf0000;
    transition: all 225ms ease-in-out;
    margin-top: 10px;
}

.buttonStyleRestart:hover {
    background-color: #ffa800;
    transition: all 225ms ease-in-out;
    cursor: pointer;
    box-shadow: 0 0 0.53m 0 var(#ffa800);
}

/* @media(max-width: 1000px) {
    #canvas {
        background-color: black;
        width: 270px !important;

        text-shadow: 0 0 .25em var(--clr-neon);
    }
} */
@media only screen and (max-height: 580px){
    h1{
        display: none;
    }

}



@media only screen and (max-width: 720px) {
    canvas, img {
        width: 100% !important;
    }

    .buttonStyleStart{
        /* width: 100% !important; */
        left: 10px;
    }

    h1{
        display: none;
    }

    .positionButtons{
        width: auto;
    }
}

@media only screen and (max-height: 480px) {
    canvas, img {
        height: 100vh !important;
    }

    .buttonStyleStart{
        /* height: 100vh !important; */
        left: 10px;
    } 
    h1{
        display: none;
    }

    .positionButtons{
        width: auto;
    }
}