@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&family=Anta&family=Dancing+Script:wght@400..700&family=Fredoka:wght@300..700&family=Roboto:wght@300&family=Ubuntu:wght@300&display=swap');

body {
    font-family: "Fredoka", sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(39, 24, 4);
}

#maindiv {
    max-width: 600px;
    margin: 50px auto;
    background-color: rgb(251, 251, 251);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
h1{
    text-align: center;
    color: rgb(39, 24, 4);
}
#questioncount, #score {
    font-weight: bold;
}

#question {
    margin-bottom: 20px;
    text-align: center;
}

button {
    font-family: "Fredoka", sans-serif;
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: rgb(236, 212, 182);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.s_btn, .n_btn{
    background-color:rgb(58, 48, 35);
    color: white;
}
.opt:hover {
    background-color: burlywood;
}

#result {
    margin-bottom: 20px;
}

#feedback {
    font-weight: bold;
}

.btn-selected {
    background-color:burlywood !important;
}

#bottom {
    text-align: center;
    display: flex;
    flex-direction: row;
}

#submitBtn, #nextBtn {
    margin-right: 10px;
}

