.nav-menu {
    justify-self: flex-end;
    padding: 1rem;
}


.nav-menu ul{
    display: flex;
    justify-self: flex-end;
}

.nav-menu li {
    padding-inline: 1rem;
    font-size: 1.5rem;

}

.burgmenu-icon {
    padding-right: 1rem;
    cursor: pointer;
}


#burgmenu-container {
    display: block;
    position: fixed;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    text-align: center;
    background-color: #fafafa;
    transition: right 0.6s ease-in-out;
    z-index: 100; 

}
.b-menu {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;

}
.exit-menu {
    display: flex;
    justify-content: flex-end;
}

.menu-x {
    padding: 1rem;
    cursor: pointer;
}

.menu-content {
    display: flex;

}

.burger-menu-items {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
}
.burger-menu-items li {
    font-size: 4rem;
}

.burg-menu-footer {
    display: flex;
    flex-direction: column;
}

.burg-social-icons {
    display: flex;
    justify-content: center;
    padding-block: 1rem;
    gap: 5rem;
    height: 100px;
    margin-bottom: 1.5rem;
}
.burg-social-icons img {
    cursor: pointer;
    height: 50px;
}

@media (min-width: 501px) {
    .burgmenu-icon {
        display: none;
    }

}

@media (max-width: 500px) {
    .nav-menu-items {
        display: none;
    }
}

