body {
    background-color: #121212;
    color: #e0d9b8;
    font-family: 'Georgia', serif;
    text-align: center;
    margin: 0;
    padding: 0;
    user-select: none;
}

header {
    background-color: #2c2c2c;
    padding: 1rem;
}

h1 {
    color: #f4d03f;
    margin: 0;
}

main {
    margin: 2rem auto;
    width: 80%;
    text-align: center;
}

#progress-bar-container {
    background-color: #2c2c2c;
    border-radius: 5px;
    margin: 20px auto;
    width: 100%;
    height: 20px;
    overflow: hidden;
}

#progress-bar {
    background-color: #f4d03f;
    height: 100%;
    width: 0;
    transition: width 0.5s ease-in-out;
}

#question-container {
    margin-top: 2rem;
}

#question-text {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

#answer-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.answer-box {
    border: 2px solid #f4d03f;
    border-radius: 8px;
    padding: 15px;
    background-color: #1c1c1c;
    color: #e0d9b8;
    font-size: 45px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.answer-box:hover {
    transform: scale(1.05);
    background-color: #2c2c2c;
}

button {
    background-color: #f4d03f;
    border: none;
    padding: 10px 20px;
    color: #121212;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #d4b639;
}

a {
    text-decoration: none !important;
    color: #f4d03f;
}

p {
    font-size: 30px;
}
