.tab-container {
    display: flex;
    justify-content: center;
  flex-wrap: wrap;
}
.tab {
    padding: 10px 25px;

    margin: 10px;
  display:flex;
  align-items:center;
  
/*  sourced */
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    transition: border .5s ease-in-out,box-shadow .3s ease-in-out,background-color .3s ease-in-out;
}
.tab:hover {
  box-shadow: 0 0 0 max(4px,.2em) #113758;
    cursor: pointer;
}
.tab.selected {
  background-color: #113758;
    color: #fff;
}
.tab img {
  max-height:30px;
  margin-left:5px;
}
/* Add styles for the selected tab */
.selected {
  background-color: #f0f0f0;
}
.content {
    margin: auto;
    display: block;
    text-align: center;
} 
}