.trivia{
    height: 60vh;
    width: 100vw;
    background: rgb(200,168,233);
    background: radial-gradient(circle, rgba(200,168,233,1) 49%, rgba(227,170,221,0.726015406162465) 100%);
    
}
.trivia article p{
    font-size: 0.8rem;
    font-weight: bold;
}
.quiz-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 300px;
}

.btn-send {
    background-color: #C8A8E9;
    border: none;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}
.btn{
    margin-top: 0.3rem;
}
#answer-buttons {
    list-style: none;
    padding: 0;
}

#answer-buttons li {
    margin: 10px 0;
}

#answer-buttons button {
    background-color: #e0e0e0;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

#answer-buttons button:hover {
    background-color: #c0c0c0;
}

@media screen and (min-width: 700px){
    .trivia article p{
        font-size: 1.4rem;
        font-weight: bold;
    }
}