.tab-container{
    width: 100%;
    margin: 1% auto;
}

.tabs{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; 
    background-color: white;
} 
.tab-item{
    font-size: xx-large;
    flex-grow: 1;
}
.tab-item a {
    display: block;
    /* padding: 10px, 15px; */
    text-decoration: none;
    color:black;
    text-align: center;
    border-right: 2px solid black;
    border-left: 2px solid black;
}
/* .tab-item:last-child a {
    border-right: none;
} */
.tab-item a:hover {
    color: rgb(85, 85, 85); 
    text-decoration:underline;

}   
 