html{
    background-color: #ffffff;
}


#header{
    position:fixed;
    top:0px;
    left: 0px;
    background-color: #e67e22;
    width:100%;
    height: 80px;
    z-index: 100;
    
}

#centrale{
    margin-top: 100px;
}

#header li {
    display: inline;
    margin-right: 10px;
}

#nav {
    
    position: relative;
    display: flex;
    justify-content:end ; /* Centra il menu orizzontalmente */
    margin: 10px;
}

#nav ul {
    color: white;
    display: flex;
    align-items: center; /* Allinea gli elementi verticalmente */
    font: bold 18px Arial, sans-serif;
    list-style: none;
    padding: 0;
    margin: 0;
}

#nav ul li {
    text-decoration: none;
    margin: 0 15px; /* Spazio tra gli elementi */
    display: flex;
    align-items: center; /* Assicura che il tasto home sia centrato verticalmente */
}

.tastoHeader a {
    color: rgb(255, 255, 255);
    background-color: #ffffff18;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s, border-radius 0.3s;
}

.tastoHeader a:hover {
    background: #ffffff5e;
    border-radius: 5px;
}


.tastohome {
    width: 40px;
    height: auto;
}

.donazione a{
    color: white;
    border: 9px solid red;
    background-color: red;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 10px;

}

.donazione a:hover {
    background: #b30000;
    border-radius: 10px;
    border: 9px solid #b30000;
    padding: 10px 15px;
    
}

#lingua img{
    width: 50px;
    height: auto;
}

#logo {
    position: fixed;
    top: 8px;
    left: 10px;
    width: 200px;
    height: auto;
}

#aside {
    float: left;
    width: 400px;
    background-color: #f1f1f1;
    height: 100%;
    box-sizing: border-box;
    padding: 40px;
    
}

#wrapper{
    float: right;
    width: 1400px;
    height: 100%;
    background-color: #f1f1f1;
    
    padding: 40px;
}   

#footer {
    position: fixed;
    bottom: -260px; /* Nasconde il footer inizialmente */
    left: 0;
    width: 100%;
    background: #333333;
    color: white;
    text-align: center;
    padding: 15px;
    transition: bottom 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    z-index: 100;
}

#left {
    width: 60%;
    text-align: left;
    position:relative;
    left: 50px;
    bottom: -10px;
}

#right {
    width: 40%;
    text-align: right;
    position:relative;
    bottom: -10px;
    right: 100px;
}

#social{
    text-align: center;
}

#social a{
    text-decoration: none;
}

#immsocial{
    width: 80px;
    height: auto;
    margin-right: 100px;
}

#info ul{
    list-style-type: none;
}
#info ul li{
    margin: 10px;
    font-size: 130%;
}

body.scrolled #footer {
    bottom: 0; /* Mostra il footer quando si scorre in basso */
}

