body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background-color: black;
    margin: 0;
}

canvas {
    border: 1px solid white;
}

#menu {
    text-align: center;
    color: white;
}

button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.logo {
    position: absolute; /* Position it absolutely */
    top: 20px; /* Distance from the top */
    left: 20px; /* Distance from the left */
    z-index: 1000; /* Ensure it appears above other content */
    display: inline-block; /* Ensures the logo behaves like a block element */
    margin: 20px; /* Adjust margin as needed */
}

.logo-image {
    width: 50px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
}

.start-button {
    position: absolute; /* Position it absolutely */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for centering */
    font-size: 24px; /* Increase font size */
    padding: 20px 40px; /* Add padding */
    background-color: white; /* Button color */
    color: black; /* Text color */
    border: none; /* Remove border */
    cursor: pointer; /* Pointer cursor */
    z-index: 1000; /* Ensure it appears above other content */
}

.difficulty-container {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.instructions {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.instructions h2 {
    margin: 0;
}

.instructions p {
    margin: 5px 0;
}

.instructions label {
    margin-right: 10px;
}
