* {
    font-family: "Poppins", Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* border: 1px solid red; */
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20%;
    padding: 1% 0 1% 0;
    border-bottom: 1px solid #e6e6e6;
    ;
}

.indietro {
    background-color: white;
    color: white;
    border: none;
    cursor: pointer;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.app {
    display: flex;
    padding-top: 7%;
}

.app h2 {
    font-size: 2.5rem;
    padding-bottom: 3%;
}

.app p {
    font-size: 1.5rem;
    font-weight: 300;
    padding-bottom: 3%;
}

.step0 {
    display: flex;
    flex-direction: column;
    padding: 0 20% 0 20%;
    text-align: center;
}

input {
    font-size: 1.5rem;
    font-weight: 300;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.avanti {
    background-color: blue;
    color: white;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 1% 3% 1% 3%;
    margin-top: 2%;
    text-decoration: none;
}

.avanti:disabled {
    background-color: grey;
    cursor: not-allowed;
}

.step0,
.step1,
.step3,
.step4 {
    display: flex;
    flex-direction: column;
    padding: 0 20% 0 20%;
    text-align: center;
}

.introduzione-step2 {
    display: flex;
    flex-direction: column;
    padding: 0 10% 0 10%;
    text-align: center;
}

.step2 p {
    font-weight: 300;
    font-size: 1.5rem;
    padding-bottom: 5%;
}

.obiettivi {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 3%;
    justify-content: center;
}

.obiettivi p {
    font-weight: 300;
    font-size: 1rem;
    border: 1px solid #e6e6e6;
    padding: 1.5%;
}

.cliccabile {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ccc;
    display: inline-block;
    margin: 5px;
}

.cliccabile.selected {
    border-color: blue;
}

.step3 textarea {
    width: 60%;
    height: 50%;
    font-size: 1.2rem;
    font-weight: 300;
    padding: 2%;
    display: inline-block;
}

#nextBtn.ultimo-step {
    margin-top: 8%;
}

.ultimo-paragrafo {
    padding-bottom: 10% !important;
}   

@media (max-width: 768px) {
    .app {
        display: flex;
        flex-direction: column;
        padding-top: 7%;
    }

    .app h2 {
        font-size: 2rem;
    }

    .navbar {
        padding: 5% 0 5% 0 !important;
    }

    input {
        font-size: 1.5rem;
        font-weight: 300;
        width: 100%;
        margin: 8px 0;
        border: 1px solid #ccc;
    }

    .avanti {
        font-size: 2rem;
        margin-top: 4%;
        padding: 2% 3% 2% 3%;
    }

    .obiettivi {
        flex-direction: column !important;
    }

    .obiettivi p {
        padding: 2.5% !important;
        font-size: 1.2rem;
    }

    .step0,
    .step1,
    .step3,
    .step4 {
        padding: 0 10% 0 10%;
    }

    .step3 textarea {
        width: 100% !important;
    }
}