/* tabs */

.tab {
    overflow: hidden;
    border: 2px soild white;
    color: rgb(230, 230, 230);
    background-color: rgb(0, 0, 0);
    text-align: center;
}
  
.tab button {
    background-color: inherit;
    border: 1px solid white;
    color: rgb(230, 230, 230);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    padding: 15px 32px;
    margin-left: 25px;
    margin-right: 25px;
}

.tab button:hover {
    background-color: rgb(0, 0, 0);
}
  
.tab button.active {
    background-color: rgb(90, 90, 90);
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
}