

/* Triangle quiz */
.triangle_quiz{
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

input[type="radio"], .questions_label{
    float: left;
    padding: 3px;
    margin-right: 10px;
}

input[type="radio"]{
    margin-right: 0;
}

.triangle_quiz_questions{
    text-align: left;
    margin-bottom: 0;
    font-weight: bolder;
}

.questions{
    /* background-color: #d19592;
    background-image: linear-gradient(315deg, #d19592 0%, #c81f70 74%); */
    background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9); 
    color: black;
    height: 130px;
    padding-top: 10px;
    margin: 20px 0;
}

.quiz{
    width: 60%;
}

.quiz_para{
    font-weight: bold;
    font-size: 20px;
    margin: 25px;
}

@media screen and (max-width: 360px) {
    .questions{
        height: 160px;
    }
}