/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #2d3748;
}

.container {
    background-color: #1a202c;
    border-radius: 0.5rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    margin: 10rem auto;
    width: 90%;
    max-width: 50rem;
    text-align: center;
}

.hidden {
    display: none;
}

/* Buttons */
button {
    padding: 0.75rem 1.25rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    background-color: #6b46c1;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #553c9a;
}

/* Inputs */
input[type="text"] {
    width: 100%;
    padding: 0.5rem;
    font-size: 1.125rem;
    border-radius: 0.375rem;
    background-color: #4a5568;
    color: #fff;
    border: none;
    margin-bottom: 1rem;
}

input[type="text"]::placeholder {
    color: #a0bcc0;
}

/* Quiz Options */
.question {
    color: #fbfbfb;
    margin-bottom: 1rem;
    font-weight: 600;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

label {
    cursor: pointer;
    font-size: 1.125rem;
}

input[type="radio"] {
    transform: scale(1.2);

}

/* Result Page */
#result-message {
    font-size: 1.875rem;
    font-weight: 600;
    margin: 1rem 0;
}

#cup-img {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1rem;
    position: relative;
}

/* Restart Button */
button[onclick="location.reload()"] {
    background-color: #d69e2e;
}

button[onclick="location.reload()"]:hover {
    background-color: #b7791f;
}
