html {
    scroll-behavior: smooth;
}

.menu_entry{
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: hsl(0 0% 100%);
    box-shadow: 0 1rem 2rem hsl(0 0% 0% / 20%);
    color: hsl(200 50% 20%);
    line-height: 1.5;
    display: flex;
    place-items: center;
    padding: 1ch;
    border-radius: 2ch;
    border: 1px solid hsl(0 0% 83%);
    max-width: 30%;
}
.menu_entry ul {
    padding: 15px 20px;
    list-style: none;
}

.menu-container-btn {
    bottom: 70px;
    right: 20px;
    position: fixed;
    z-index: 9997;
}

.menu-toggle-btn {
    height: 42px;
    width: 42px;
    bottom: 0;
    right: 0;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    box-shadow: 3px 3px 2px 1px rgb(0 0 0 / 20%);
    z-index: 9997;
    cursor: pointer;
}

.menu-toggle-btn i {
    font-size: 2rem;
    color: #eeeeee;
    transition: 0.5s;
}

.menu-toggle-btn.effect i {
    transform: rotate(135deg);
}

.menu-list {
    list-style: none;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1;
}

.menu-list .menu-item {
    height: 2.3rem;
    width: 2.3rem;
    bottom: 0.25rem;
    right: 0.25rem;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-dark);
    transition: 0.5s;
}

.menu-list .menu-item a {
    text-decoration: none;
    color: #eeeeee;
}

.menu-list .menu-item:hover {
    background-color: var(--primary-color);
}

.menu-list.effect .menu-item {
    box-shadow: 3px 3px 2px 1px rgba(0, 0, 0, 0.2);
}

.menu-list.effect .menu-item:nth-of-type(1) {
    bottom: 4.25rem;
    right: 0.5rem;
    transition-delay: 0.2s;
}

.menu-list.effect .menu-item:nth-of-type(2) {
    bottom: 3.5rem;
    right: 3.5rem;
    transition-delay: 0.1s;
}

.menu-list.effect .menu-item:nth-of-type(3) {
    bottom: 0.5rem;
    right: 4.25rem;
}