* {
    padding: 0;
    margin: 0;
    background-color: rgb(0, 0, 0);
    box-shadow: inset rgb(158, 158, 158) 100px 100px 100px;
    background-image: url(../images/moody.jpg);
}

.corner-canvas {
    width: 50vw;
    height: 50vh;
}

#pathCanvas1 {
    position: absolute;
    top: 0;
    left: 0;
}

#pathCanvas2 {
    position: absolute;
    top: 0;
    right: 0;
    transform: scaleX(-1);
}

#pathCanvas3 {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleY(-1);
}

#pathCanvas4 {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: scaleX(-1) scaleY(-1);
}

/* Button Styling */
.reset-btn, .exit-btn {
    position: absolute;
    bottom: 10px;
    z-index: 2;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 10px;
    border: 3px solid rgb(0, 0, 0);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.6);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
}

/* Positioning Fix */
.reset-btn {
    right: 110px; /* Moves RESET button left of EXIT button */
}

.exit-btn {
    right: 10px;
}

.reset-btn:hover,
.exit-btn:hover {
    background-color: rgb(179, 179, 179);
    box-shadow: inset rgb(0, 0, 0) 0px 0px 5px;
}
