 /* Reset */ 
 body, html
{
    font-family: 'IBM Plex Sans', Inter, Helvetica, sans-serif; 
    font-size: 1.2rem; 
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: #f8fafc;
    color: #131313;
}

*,*:before,*:after
{ 
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6, p, ol, ul
{
    margin: 0;
    padding: 0;
}

ol,ul
{
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
    font-style: normal;
    list-style-type: none;
}

img
{
    height: auto;
}

p
{
    font-size: 1.2rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1.6;
    padding-bottom: 1rem;
}

a
{
    color: black;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: normal;
}

a:hover
{
    color: black;
    text-decoration: underline;
}


/* ------------------------------ Container contenuto ------------------------------ */

.main {
    padding: 2rem 2rem 2rem 2rem;
    display: flex;
    align-items: center;
}

/* ------------------------------ Responsive ------------------------------ */

@media (max-width: 768px)
{
    .main 
    {
        flex-wrap: wrap;
    }  
}