main{
    width: 100%;
    min-height: 100vh;
    background-color: var(--lightAccent);
    padding: 10%;
}

.tabs{
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    overflow-y: auto;
}
.tab-btn{
    background-color: white;
    border-radius: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: black;
    border: none;
    cursor: pointer;
    transition-duration: 0s;
    border-bottom: 4px solid transparent;
}
.tab-btn:hover{
    background-color: #f5f5f5 !important;
    transform: none;
}
.tab-btn:active{
    background-color: #f5F5F5 !important;
    transform: none;
}
.tab-btn.active{
    border-bottom: 4px solid var(--accent);
}

.content{
    overflow: hidden;
}
.content > *{
    width: 100%;
}

.title{
    text-align: center;
    font-size: 2rem;
}
.subtitle{
    text-align: center;
    font-size: 1rem;
    margin-bottom: 5%;
}