@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

html
{
    --main-color: rgb(234, 0, 41);
    --green-color: rgb(0,189,109);
    --violet-color: rgb(94,64,152);
    font-size: 16px;
}

a:hover
{
    text-decoration: none;
}

body
{
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-weight: bold;
    margin-bottom: 1.8rem;
}

h2 {
    margin-bottom: 1.3rem;
    font-weight: bold;
    line-height: 1.4;
}

.paragrafo {
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1.3;
}

#container-footer
{
    box-shadow: 0px -2px 30px 0px rgba(34, 34, 34, 0.1);
}

#footer h4
{
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

#footer p
{
    line-height: 1.7;
    font-size: 0.9rem;
}

#footer .social
{
    display: inline-block;
    cursor: pointer;
    background-color: #f2f3f5;
    padding: 0.9rem;
    width: 60px;
    text-align: center;
    color:gray;
    transition: 0.4s;
    font-size:1.4rem;
}

#footer .social:hover
{
    background-color: var(--main-color);
    color:white;
}

#footer a
{
    color: black;
}

.btn-rotondo {
    border-radius: 1000px;
    padding: 1.2rem 1.8rem;
    border-width: 2px;
}

.btn-rotondo-stretto {
    padding: 0.7rem 1.2rem;
}

.btn-rotondo i {
    margin-left: 0.8rem;
}

.btn-outline-violet
{
    border-color: rgb(131, 71, 173);
    color: rgb(131, 71, 173);
    background-color: transparent;
}

.btn-outline-violet:hover
{
    color: white;
    background-color: rgb(131, 71, 173);
}

@media screen and (max-width: 600px) {
    html
    {
        font-size: 14px;
    }    
}

#menu {
    z-index: 20
}

#menu a {
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.lista {
    padding-inline-start: 0;
    text-align: right;
    margin-bottom: 0;
}

.lista li {
    display: inline-block;
    line-height: 3.9;
    padding: 0 16px;
}

.lista a:hover {
    color: rgba(255, 255, 255, 0.6)!important;
}

.li-attivo
{
    border:2px solid white;
    border-radius: 1.4rem;
}

.lista-stretta li {
    padding: 0 12px;
    line-height: 3.1;
}

@media screen and (max-width: 1000px) {
    body
    {
        padding-top:5rem;
    }

    #menu {
        position: fixed!important;
        height: 100vh;
        width: 100%;
        top: 0;
        left:0;
        max-width: 500px;
        background: linear-gradient(black, rgba(34, 34, 34, 0.95) 90%);
        overflow-y: auto;
        padding-top: 6rem;
        display: none;
    }

    .paragrafo {
        font-size: 1.2rem;
    }
   
    .lista {
        text-align: left;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .lista li {
        display: block;
        line-height: 3;
    }

    .lista li.icona {
        display: inline-block!important;
    }

    #logo-menu {
        display: none;
    }

    #header-mobile {
        display: flex !important;
    }   

    h1 {
        font-size: 2rem;
        margin-bottom: 1.8rem;
    }

    h2 {
        font-size: 1.7rem;
    }
}