body{
    background-color: black;
    color: antiquewhite;
    font-family: 'Courier New', Courier, monospace;
}

select, button{
    background-color: antiquewhite;
    color: black;
    border: none;
    border-radius: 5px;
}

input[type="checkbox"]{
    margin-right: 20px;
    margin-left: 0px;
}

.display {
    height: 600px;
    position: relative;
    aspect-ratio: 1;
}

.horizontal-parent {
    width: 100%;
    height: 650px;
}

.horizontal-child{
    display: inline-block;
    float: left;
    margin: 20px;
}

p{
    max-width: 65ch;
}

a {
    color: antiquewhite;
}

canvas {
    top:0;
    left:0;
    position: absolute;
    height: 600px;
    aspect-ratio: 1;
}

footer {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 30px;
}

#simulation-maze{
    position: static;
}

#maze{
    z-index: 1;
}

#user{
    z-index: 2;
}

#blind{
    z-index: 3;
}

#solution{
    z-index: 4;
    opacity: 0%;
}

