.hbMeni {
    position: relative;
    min-height: 100vh;
    min-width: 320px;
    place-self: center;
    padding-top: 20px;
    padding-bottom: 260px;
    display: none;
    grid-auto-rows: 50px;
    grid-auto-flow: column;
    cursor: pointer;
    row-gap: 5px;
    opacity: 0;
    animation: myMove 1s;
    background: linear-gradient(rgba(42 42 42 / 0.5));
}

.hbMeni.responsive {
    display: grid;
    opacity: 1;


}

.hbMeni button {
    grid-column: 1;

}

.hbdropdown-content a,
.hbdropdown-content button {
    grid-column: 2;
    font-size: 0.8em;
    background-color: var(--color-red);
}

.hbMeni .styleMeniBtn.active {
    z-index: 2;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--color-red);
    transform: translateX(150px);
}



.styleMeniBtn {
    border-radius: 8px;
    padding: 14px 16px;
    min-height: 50px;
    text-decoration: none;
    background: linear-gradient(rgba(42 42 42 / 0.5));
    width: 150px;
    text-shadow: 20px 0 20px var(--color-light);
    text-align: center;
    transition: all 0.25s cubic-bezier(0.6, -0.28, 0.74, 0.05);
    box-shadow: 0 0 10px var(--color-light);
    margin: 0 auto;
}




.hbdropdown-content {
    position: relative;
    padding-top: 60px;
    border-radius: 10px;
    display: grid;
    row-gap: 5px;
    opacity: 0;
    min-height: 50px;
    height: fit-content;

}

.hbdropdown-content.show {
    opacity: 1;
    scale: 0.85;
    z-index: 1;
    animation: myMove 1s;

}


@keyframes myMoveOff {
    from {
        opacity: 100;


    }

    to {

        opacity: 0;

    }
}

@keyframes myMove {
    from {
        opacity: 0;

    }

    to {

        opacity: 1;
    }
}


.kontakt {
    display: none;
    min-width: 320px;
    width: fit-content;
    height: fit-content;
    max-height: 200px;
    margin: 0 auto;
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(42 42 42 / 0.5));
    text-align: center;

}