html {
    background-color: #a34c5c;
    box-sizing: border-box;
    --bgColorMenu : #ad888f;
    --duration: .7s;    

}

html *,
html *::before,
html *::after {

    box-sizing: inherit;

}

body{
    
    margin: 0;
    /*display: flex;*/
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: #a16a74;
    -webkit-tap-highlight-color: transparent;
    transition: background-color var(--duration);

}
#title{
    margin: 0;
    margin-left: 15px;
    display: flex;
    text-align: center;
}
#info{
    font-size: large;
    text-align: start;
    color: rgb(10, 10, 10);
    font-weight: bolder;
}
#inc{
    width: 45px;
    height: 45px;
}
.menu{
    /**/
    height: 60px;
    width: 200px;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 10px;
    display: flex;
    /* Works well with 100% width  */
    font-size: 18px;
    position: relative;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 10px #724851;
    background-color: var(--bgColorMenu);
    
    
}

.menu__item{
    
    all: unset;
    flex-grow: 1;
    z-index: 100;
    display: flex;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    align-items: center;
    will-change: transform;
    justify-content: center;
 
    transition: transform var(--timeOut , var(--duration));
    
}

.menu__item::before{
    
    content: "";
    z-index: -1;
    width: 4.2em;
    height: 4.2em;
    border-radius: 50%;
    position: absolute;
    transform: scale(0);
    transition: background-color var(--duration), transform var(--duration);
    
}


.menu__item.active {

    transform: translate3d(0, -.8em , 0);

}

.menu__item.active::before{
    
    transform: scale(1);
    background-color: rgb(214, 223, 231);
    /*background-color: var(--bgColorItem);*/

}

.icon{
    
    width: 1.6em;
    height: 1.6em;
    stroke: white;
    fill: transparent;
    stroke-width: 1pt;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    
}

.menu__item.active .icon {

    animation: strok 1.5s reverse;
    
}

@keyframes strok {

    100% {

        stroke-dashoffset: 400;

    }

}

.menu__border{

    left: 0;
    bottom: 99%;
    width: 7.9em;
    height: 0.7em;
    position: absolute;
    clip-path: url(#menu);
    will-change: transform;
    background-color: var(--bgColorMenu);
    transition: transform var(--timeOut , var(--duration));
    
}

.svg-container {

    width: 0;
    height: 0;
}


@media screen and (max-width: 50em) {
    .menu{
        font-size: .8em;
    }
}