.domanda{
    background-color: rgb(129, 197, 253);
    border-radius: 40px;
    box-shadow: #FC0 5px 5px 5px;
    display: flex;
    flex-direction: column;
}

.domanda h3{
    font-size: 30px;
}

.content-risposte{
    display: flex;
    justify-content: center;
    background-color: rgb(177, 216, 249);
    width: 90%;
    margin: 0 5%;
    border-radius: 40px;
    height: 200px;
    align-items: center;
}

.content-risposte input{
    margin: 0 10px;
}

.content-risposte label{
    font-size: 20px;
    font-weight: bolder;
    text-align: center;
}

.risposta{
    background-color: aliceblue;
    border-radius: 30px;
    margin: 10px;
    padding: 15px 20px;
    transition: 400ms;
    display: flex;
    flex-direction: column;
    height: 150px;
    justify-content: center;
    align-items: center;
}

.risposta:hover{
    transition: 400ms;
    background-color: rgb(188, 204, 218);
    scale: 1.05;
}

#invio-risposta{
    width: 30%;
    margin: 10px 35%;
    height: 50px;
    border-radius: 30px;
    background-color: rgb(42, 155, 248);
    color: white;
    font-weight: bolder;
    font-size: 30px;
    font-family: "Kanit", sans-serif;
    font-weight: 500;
    font-style: normal;
    transition: 400ms;
}

#invio-risposta:hover{
    transition: 500ms;
    cursor: pointer;
    background-color: rgb(0, 102, 185);
    scale: 1.1;
}

@media screen and (max-width: 1111px){
    .domanda h3{
        font-size: 20px;
    }

    .content-risposte{
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .risposta{
        height: auto;
    }
    #invio-risposta{
        width: 250px;
        text-align: center;
        margin: 20px auto;
    }
}