body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #eaeaea;
    padding: 20px;
}

.game-container {
    max-width: 600px;
    margin: 0 auto;
}

img {
    width: auto;
    height: 300px;
    border: 2px solid #ddd;
    margin-bottom: 20px;
}

.options {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.option {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.option:hover {
    background-color: #2196F3;
    color: white;
}

.result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

#black-square {
    position: absolute;
    top: 200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background-color: black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#correct-count {
    position: absolute;
    top: 270px;
    left: -20px;
    width: 250px;
    bottom: 10px;        
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

#go-home-button {
    position: absolute;
    top: 500px;
    left: -35px;
    width: 275px;
    height: 60px;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 25px;
    cursor: pointer;
    border-radius: 12px;
}

#go-home-button:hover {
    background-color: #38833c;
}
