body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('https://cdn.discordapp.com/attachments/1054408048086626416/1156247138137800784/Lucifer.jpg') no-repeat center center fixed;
    background-size: cover;
}

#start-screen, #game-screen, #score-screen {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Change the alpha value (0.8) as needed */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin: 20px auto;
}

h1 {
    color: #333;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="text"], input[type="radio"] {
    margin: 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="radio"]:checked + label {
    font-weight: bold;
}

button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#game-screen img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

#timer {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

#choices .choice {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin: 10px;
    cursor: pointer;
}

#choices .choice:hover {
    background-color: #0056b3;
}

#score-screen h1 {
    color: #FF5722;
}

#play-again-button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#play-again-button:hover {
    background-color: #45a049;
}

/* Add this CSS for responsive footer */
#footer {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}