.menu{
display: flex;
justify-content: center;
margin-top: 120px;
padding: 0;
}
.menu__item{
list-style: none;
}
.menu__item::after{
content:"";
display: inline-block;
padding-right: 20px;
height: 3px;
background-color: #cccccc;
}
.menu__item:last-child::after{
padding: 0px;
}
.menu__link {
color: white;
background-color: #bdde38;
padding: 8px 16px;
text-decoration: none;
border-radius:50%;
border:3px solid #cccccc;
}
.menu__link:active{
background-color: #ab4a9c;
}
.menu__link_next{
background-color: #cccccc;
color:black;
}