/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Background */
body {
    background: linear-gradient(to bottom right, #1e7249, #2a5298);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Title */
#title {
    text-align: center;
    color: #fff;
    background-color: #243b55;
    height: 70px;
    line-height: 70px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    padding: 0 20px;
    margin-top: 20px;
}

/* Choice Container */
.choices {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(36, 59, 85, 0.8);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    margin: 20px auto;
}

/* Individual Choices */
.choice {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons */
button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px; 
    height: 160px; 
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.6);
}

/* Button Images */
button img {
    width: 100%; /* Fill the button */
    height: 100%; /* Maintain aspect ratio */
    object-fit: cover; /* Ensures the image fits properly */
}

/* Reset Button Container */
.reset {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(36, 59, 85, 0.9);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Reset Button */
#resetButton {
    color: white;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    width: 150px;
    border-radius: 25px;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    border: none;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#resetButton:hover {
    transform: scale(1.1);
    background: linear-gradient(to right, #2a5298, #1e3c72);
    box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.6);
}
/* Scorecard Container */
#scorecard {
    text-align: center;
    background-color: rgba(36, 59, 85, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    margin: 20px auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

/* Scorecard Header */
#scorecard h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Scores */
.scores {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
}

.scores p {
    margin: 0;
}
