*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
html,body{
    width: 100%;
    height: 100%;
    background-color: rgb(4, 95, 165);
}
.container{
    width: 50%;
    max-width: 500px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 20px;
    margin: 100px auto 0;
    border: none;
    border-radius: 20px;
    box-shadow:  0px 0px 10px black;
}
.container h1{
    text-align: center;
    font-weight: 100;
    border-bottom: 1px solid black;
    padding: 15px;
}
.question p{
    font-size: 18px;
    font-weight: 500;
}
#answer-button {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}
.btn{
    width: 100%;
    border: none;
    border-radius: 10px;
    background-color: aliceblue;
    color: rgb(36, 36, 36);
    padding: 10px;
    text-align: left;
    transition: all 0.5s;
    cursor: pointer;
}
.btn:hover:not([disabled]){
    background-color: rgb(21, 21, 21);
    color: white;
}
.btn:disabled{
    cursor: no-drop;
}
.btn-main{
    margin: 20px auto 0;
    width: 100px;
    padding: 10px;
    border-radius: 20px;
    border: none;
    outline: none;
    background-color:  rgb(0, 44, 78);
    color: white;
    box-shadow:  5px 5px 10px black;
    cursor: pointer;
    display: none;
}
.correct{
    background-color: rgb(84, 177, 84);
}
.incorrect{
    background-color: rgb(179, 48, 48);
}