body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}

header {
    width: 500px;
    display: flex;
    justify-content: space-around;
    position: absolute;
    top: 0;
    border: 2px solid black;
    border-radius: 0 0 20px 20px;
    border-top: none;
}

main {
    width: 500px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border: 2px solid black;
    border-radius: 30px;
}

#question {
    display: flex;
    direction: column;
    align-items: center;

}

.answers {
    display: flex;
    direction: column;
    align-items: center;
    gap: 20px;
}

.correct {
    border-color: green;
}

.wrong {
    border-color: red;
}

button {
    background-color: white;
    border: 3px solid black;
    border-radius: 5px;
    padding: 5px 10px;
}




