@charset "ISO-8859-1";

@media only screen and (max-width: 768px) {

    body {
        font-family: 'Open Sans', sans-serif;
        background-color: #3d3d3d;
        color: white;
        margin: 0;
        padding: 0;
        line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Open Sans', sans-serif;
        font-weight: 700; /* Usa il peso 700 per i titoli */
    }

    a, li {
        font-family: 'Open Sans', sans-serif;
        font-weight: 400; /* Usa il peso 400 per il testo normale */
    }

    .p {
        width: 150px;
        height: 150px;
        transition: opacity .3s, transform .3s;
        border-radius: 15px;
        margin: 20px;
    }

    .p:hover {
        transform: scale(1.1);
    }

    section {
        margin-top: 20px;
        padding: 20px;
        border-radius: 8px;
        background:  #333;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        text-align: center;
        margin-left: 10px;
        margin-right: 10px;
    }

    .text {
        background-color: #e4e5e0;
        border-radius: 10px;
        padding: 15px;
        margin: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        color: black;
    }

    .text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        text-align: justify;
    }

    .assist {
        font-weight: bold;
        font-family: 'Open Sans', sans-serif;
    }

    .bullet {
        font-size: 1.5em;
        color: white;
    }

    .hero p {
        font-size: 1.5em;
        font-weight: 700;
    }

    #brand {
        text-align: center;
    }

    .about {
        height: auto;
    }

    .brand img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        margin: 10px;
        transition: opacity .3s, transform .3s;
    }

    .brand img:hover {
        transform: scale(1.1);
    }
}

