body{
    color: white;
    font-family: arial;
    background-color: black;
    margin: 0;
}
/*body::-webkit-scrollbar{
    display: none;
}*/
#profilo{
    width: 60px;
}
#navbar{
    background-color: rgb(181, 166, 166);
    color: white;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
    padding-left: 5%;
    padding-right: 10%;
    right: 0;
    left: 0;
}
#navlinks li{
    font-size: 18px;
    list-style: none;
    margin-left: 60px; /*15% con 4 bottoni*/
}
#navlinks li a{
    color: white;
    text-decoration: none;
    white-space: nowrap;
}
#navlinks li a:hover{
    text-decoration: underline;
}
#navlinks{
    display: flex;
    margin-left: auto;
}
#scritte{
    text-align: center;
}
#titolo{
    font-size: 140px;
    margin-top: 50px;
    margin-bottom: 50px;
}
#sottotitolo{
    margin-top: 0;
    font-size: 40px;
    font-weight: 100;
}
#descrizione{
    font-size: 25px;
    margin-left: 15%;
    margin-right: 15%;
    font-weight: 100;
}
.bottoni{
    text-decoration: none;
    display: inline-block;
    color: white;
    background-color: black;
    border: 2px solid white;
    padding: 1%;
    font-size: 25px;
    border-radius: 10px;
}
.bottoni:hover{
    background-color: white;
    color: black;
}
#box-bottoni{
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 50px;
}
#info{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
h4{
    font-weight: normal;
}
.contatti{
    color: white;
    text-decoration: none;
}
.contatti:hover{
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    #titolo{
    font-size: 90px;
    margin-top: 20px;
    margin-bottom: 20px;
    }
    #sottotitolo{
        font-size: 35px;
    }
    #descrizione{
        font-size: 20px;
    }
    #descrizione{
        margin-right: 5%;
        margin-left: 5%;
    }
    .bottoni{
        padding: 2%;
    }
    #info{
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    #info h4{
        margin: 5px 0;
    }
    #box-bottoni{
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    #navbar{
        padding-left: 0;
        padding-right: 5%;
    }
    #navlinks li{
        margin-left: 30px;
    }
    .contatti{
        text-decoration: underline;
    }
}
