*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    background-color: rgb(11, 10, 40);
}
.quiz-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    padding: 30px;
    border: 2px solid rgb(27, 25, 60);
    background-color: rgb(11, 10, 40);
    position: sticky;
    top: 0;
    width: 100%;
}

.logo , .score , .question {
    font-family: 'Times New Roman', Times, serif;
    font-style: normal;
    font-size: 25px;
    font: optional;
    font-weight: normal;
    color: white;
}

.question-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(44, 35, 92);
    background-color: rgb(21, 14, 62);
    border-radius:10px;
    height: 75vh; 
    width: 80%;
    margin: 20px auto;
}

.question-list {
    list-style: none;
    text-align: center;
    width: 100%;
    color: white;
}
.answer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}


.answer-btn, .new-game-btn {
    padding: 15px 20px;
    font-size: 18px;
    background-color: rgb(42, 32, 92);
    color: white;
    border: 1px solid rgb(72, 62, 122);
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.answer-btn:hover, .new-game-btn:hover {
    background-color: rgb(62, 52, 142);
}

.correct-choice {
    background-color: #28a745 !important; 
    border-color: #1e7e34;
}

.wrong-choice {
    background-color: #dc3545 !important; 
    border-color: #bd2130;
}
.question-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: rgb(22, 16, 62);
    border: 2px solid rgb(42, 32, 92);
    border-radius: 10px;
    height: 120vh;
    width: 50% auto;
}


.footer-menu {
    border: 2px solid rgb(27, 25, 60);
    background-color: rgb(11, 10, 40);
    text-align: center;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 20px;
}
.progress-bar {
    width: 100%;
    height: 10px;
    background: gray;
    border-radius: 10px;
}

.progress {
    width: 0%;
    height: 100%;
    background: green;
    border-radius: 10px;
    transition: 0.3s;
}