.tabs{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    margin: 10px 0px 10px 0px;
    width: 100%;
}
.tab{
    border-style: inset;
    border-width: 5px;
    border-color: #ef4880;
    background-color: #f6A3bf;
    text-align: center;
    transition: box-shadow .1s ease-in-out;
}
.tab:hover {
    box-shadow: 0 0 15px 5px #F0164A;
}