/* Stile navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    position: relative;
    font-family: Arial, sans-serif;
    margin-bottom: -90px;
}

/* Bottone hamburger */
.hamburger {
    position: absolute;
    left: 20px;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* Logo */
.logo a {
    text-decoration: none;
    color: black;
    font-size: 20px;
}

/* Menù laterale */
.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
}

.side-menu a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    color: black;
    display: block;
    transition: 0.2s;
}

.side-menu a:hover {
    background-color: #f0f0f0;
}

.closebtn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    text-decoration: none;
    color: black;
}
