.navbar {
    background: linear-gradient(to right, #6E6E6E 0%, #656565 50%, #444444 100%);    
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 5px #755830;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* height: 12%; */
    margin: 0px;
    border-radius: 0px 0px 20px 20px;
    border-bottom: 3px solid #222222;
    box-sizing: border-box;

}

.navbar a {
    color: #f0f0f0; /* Colore delle stelle (bianco chiaro) */
    text-decoration: none;
    padding: 14px 20px;
    font-size: 18px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #4a90e2; /* Blu più chiaro al passaggio del mouse */
}



.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    box-sizing: border-box;

}

.navbar li {
    margin-left: 20px;
}
.navbar a {
    font-size: larger;

}

.navbar button {
    background-color: #4a90e2; /* Colore pulsante stellato */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.navbar button:hover {
    background-color: #3b77c6; /* Colore più chiaro al passaggio del mouse */
}

.navbar h1 {
    font-size: 35px;
    font-weight: bold;
    margin: 0px;
    position: absolute;
    right: 20%;
    left: 20%;
    color: #000;
    
}
.titolone{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.logo {
    width: 70px;
    box-sizing: border-box;

}
