main {
    margin: 0 2rem;
}

.questionary-article {
    margin-top: 15rem;
    margin-bottom: 3rem;
    color: white;
    background-color: #4251B0;
    border: #2638A9 solid 2px;
    font-size: 1.5rem;
    padding: 2rem 1rem;
    border-radius: 30px;
}

.option-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.option {
    color: white;
    background-color: #4481D5;
    box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 5px 5px 4px 0px rgba(0, 0, 0, 0.3);

    padding: 1.5rem 1rem;
    margin: 1rem 0;

    border-radius: 15px;
    font-size: 1.3rem;


    transition: 
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.option.selected {
    background-color: #3be7d9;
    transform: scale(1.03);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.option input[type="radio"] {
    display: none;
}

.radio-circle {
    width: 1.4rem;
    height: 1.4rem;

    border: 2px solid white;
    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: 0.2s ease;
}

.option.selected .radio-circle {
    border-color: white;
}

.option.selected .radio-circle::after {
    content: "";

    width: 0.7rem;
    height: 0.7rem;

    background-color: #DE4A54;
    border-radius: 50%;
}


.section-btn{
    display: flex;
    align-self: center;
    justify-self: center;
    justify-content: center;
    border-radius: 15px;
    margin-top: 2rem;
    color: white;
    background-color: #3be7d9;
    border: none;
    width: 10rem;
    padding: 1.5rem;
    font-size: 15px;
    font-weight: 600;

    transform: scale(1);
    transition: transform 0.3s ease;
}

.section-btn:active{
    transform: scale(1.2);
    transition: transform 0.1s ease;
}