body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Align elements vertically */
    height: 100vh;
    margin: 0;
}

#title {
    font-size: 24px; /* Adjust as needed */
    margin-top: 20px; /* Adjust as needed */
}

#gameWindow {
    position: relative;
    display: none;
}

#score {
    position: absolute;
    bottom: -50px; /* Adjust as needed */
    right: -30px; /* Adjust as needed */
    font-size: 50px;
}
  
canvas {
    border: 1px solid #000;
}
img {
    position: absolute;
}
/* Style the slider container */
input[type="range"] {
    width: 100%;
    margin: 20px 0;
}

/* Style the slider thumb and track */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    transform: translateY(-5px);
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: #007bff;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background-color: #ccc;
}
