body{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    background: url(https://www.residentevildatabase.com/wp-content/uploads/2021/04/resident-evil-village-artwork-beneviento-house.jpg);
}
#maze{
    position: relative;
    width: 300px;
    height: 300px;
    background-color: white;
    margin: auto;
    border: 2px solid black;
}
.wall{
    position: absolute;
    background-color: black;
}
#player{
    position: absolute;
    width: 20px;
    height: 20px;
    background-color:blue;
    top: 10px;
    left: 10px;
}
#goal{
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: green;
    bottom: 10px;
    right: 10px;
}
h1{
    color: aliceblue;
}