/*Header and Navbar*/
.headerContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding-top: 0;
    padding-bottom: 0;
    height: 10vh;
}

.titleName{
    cursor: default;
    font-size: 32px;
}

.navContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.navUl{
    list-style: none;
    display: flex;
    gap: 20px;
}

.navBarItem{
    text-decoration: none;
    padding: 10px 15px;
    font-size: 22px;
}

.navBarItem:hover{
    color: #3b82f6;
    border-radius: 5px;
    transition: 0.25s;
}

.dividerHeader{
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #3b82f6, transparent);
}

@media (max-width: 768px) {
    .navBarItem {
        font-size: 15px;
    }

    .titleName {
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .navBarItem {
        font-size: 10px;
    }

    .titleName {
        font-size: 12px;
    }
}

/*Defaults*/

body{
    background-color: #0f1115;
    margin: 0;
}

.sSurface{
    background-color: #171b22;
}

.pText{
    color: #f3f4f6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sText{
    color: #9ca3af;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.highLight{
    color: #3b82f6;
}

/*Footer*/
.footerContainer{
    height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}