/* Style the tab */
.tab {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
  
/* Style the buttons that are used to open the tab content */
.tab button {
    color: inherit;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    letter-spacing: .1em;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 16px 32px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
}