#maze {
    width: 900px;
    height: 600px;
    touch-action: none;
}
body {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh;
    margin: 0; 
    background-color: #333; 
    overflow: hidden; 
}
#resetButton {
            padding: 10px 20px;
            font-size: 20px;
            background-color: #88bbf1;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        #resetButton:hover {
            background-color: #0056b3; 
        }
img {
    display: none;
}
h1 {
    font-size: 48px;
    color: #ffd700;
    text-align: center; 
    margin-top: 20px; 
    margin-bottom: 30px; 
}