/* Angepasst von: https://dev.to/ljcdev/easy-hamburger-menu-with-js-2do0 */

.menu-mobil {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: space-between;
    gap: 30px;
    position: fixed;
    transform: translateY(-100%);
    transition: transform 0.2s;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: black;
    color: white;
    list-style: none;
    padding-top: 4rem;
}

.mobileMenuItem {
    font-family: "Roboto";
    color: #ffffff;
    font-size: 30px;
}

.mobileMenuItem:visited {
    color: #ffffff;
}

.showMenu {
  transform: translateY(0);
}

#burger-button {
    background-color: unset;
    border: none;
    padding: 4px;
    cursor: pointer;
    background-image: url("../img/icons/burger.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 7vw;
    height: 7vw;
    align-self: start;
    max-width: 100%;
    min-height: 100px;
}

.button-fixed {
  z-index: 100;
}