body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#menu {
    background-color: black;
    opacity: 0.75;
    padding-top: 12%;
}

.hamburger {
    position: fixed;
    top: 20px;
    right: 90px;
    cursor: pointer;
    z-index: 1000;
    background-color: black;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 6px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -6px) rotate(45deg);
}

.menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #f1f1f1;
    padding: 70px 20px 20px;
    height: 100vh;
    width: 250px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.menu.show {
    display: block;
    background-color: black;
}

.menu ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.menu ul li {
    margin-bottom: auto;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--colorbgGrey);
    margin-bottom: 6%;
}

.menu ul li a {
    text-decoration: none;
    color: var(--colorViolet);
    font-size: 18px;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .hamburger {
        position: fixed;
        top: 1%;
        right: 3%;
        cursor: pointer;
        z-index: 1000;
        background-color: black;
        /* border-radius: 50%; */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        width: 60px;
        height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


}