*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(171, 201, 245);
    flex-direction: column;
}
.title{
    color: #202b1e;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    font-size: 1.3rem;
}
.menu{
    gap: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(56, 52, 52);
    list-style: none;
    position: relative;
    z-index: 1;
    width: 610px;
    padding: 1.3rem;
}
.menu li{
    width: 3.3rem;
    height: 3.3rem;
}
.menu li:not(:last-child) .item{
    width: 3.3rem;
    height: 3.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #b7f1af;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-weight: bolder;
    font-weight: 1.8rem;
    user-select: none;
    cursor: pointer;
}
.menu .coverItem{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0%;
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    -ms-border-radius: 0%;
    -o-border-radius: 0%;
    z-index: -1;
    /* background: black; */
    left: 0;
}
.menu .item.dragging{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    box-shadow: 0px 0px 15px 0px #fff;
}