/* Style the tab */
.tab {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    width: 80vw;
    margin: auto;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: calc(15px + 0.2vw);
}

/* 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 {
    font-family: Arial, Helvetica, sans-serif;
    display: none;
    width: 80vw;
    margin: auto;
    padding: 6px 12px;
    
}
.tabcontent h3 {
    font-weight: 700;
    margin-top: 1rem;
    font-size: calc(27px + 0.4vw);
}
.tabcontent p {
    text-indent: 3ch;
    line-height:3ch;
    margin-top: 1rem;
    font-size: calc(20px + 0.4vw);
    text-align:justify;
}