@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #4d0047;
}

.app {
    margin: 5rem auto 0rem auto;
    background-color: #ffff;
    padding: 20px;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
}

.app h1 {
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 1px solid black;
    color: #001e4d;
    padding-bottom: 1.8rem;
}


.quizz-app {
    padding: 20px 0;
}

.quizz-app h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #001e4d;
}

.btn {
    background-color: #ffff;
    color: #222;
    font-weight: 500;
    border: 1px solid black;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    text-align: left;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.5s;
}

.btn:hover:not([disabled]) {
    background-color: black;
    color: white;
}

.btn:disabled {
    cursor: no-drop;
}

#next-btn {
    background-color: #4d0047;
    color: white;
    padding: 10px;
    display: block;
    width: 130px;
    margin: 20px auto 0;
    border: none;
    border-radius: 5px;
    font-size: 0.8rem;
    font: 300;
    cursor: pointer;
}

.correct {
    background-color: #00f369;
}

.incorrect {
    background-color: #d65a5a;
}