.menu-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: var(--primary-color);
    z-index: 999;
    display: flex;
    gap: 10px;
}
.hamburger-menu{
    margin-left: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.hamburger-menu button{
    width: 30px;
    height: 30px;
    background-image: var(--hamburger-svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.menu-items{
    position: fixed;
    top: 30px;
    left: 0;
    width: var(--hamburger-width);
    height: 100%;
    background-color: var(--background-color-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform var(--transition);
    border: var(--border-color) 2px solid;
}
.menu-items.open{
    transform: translateX(0);
}
.menu-items ul{
    margin-top: 10px;
    list-style: none;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0;
    text-align: center;
}
.menu-items li{
    color: var(--text-color);
    padding: 5px 0;
    font-size: 17px;
    font-weight: 600;
    width: 94%;
}
.menu-items a{
    margin-left: 3%;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 1px 16px;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.menu-items a:hover{
    background: var(--secondary-color);
    color: var(--link-hover-color);
    text-decoration: underline;
}

.menu-header{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}