/*Colors*/
:root {
    --primary-color: #A1CC4A;
    --secondary-color: #4F52A3;
    --tertiary-color: #231F20;
}
body {
    background-color: #faebd70d;
}

.color-white {
    color: white !important;
}

.color-primary {
    color: var(--primary-color);
}

.color-secondary {
    color: var(--secondary-color);
}

.color-tertiary {
    color: var(--tertiary-color);
}
.bg-color-tertiary {
    background-color: var(--tertiary-color);
}
.ta-c{
    text-align : center;
}
.header {
    background-color: white;
    color: var(--tertiary-color);
}

.bold-menu a {
    font-size: 1.2rem;
}

.nav-menu-item {
    color: white;
}

.nav-menu-item:hover {
    color: var(--tertiary-color);
    text-decoration: underline;
}

.mud-drawer:not(.mud-drawer-fixed) {
    position: fixed !important
}

.bold {
    font-weight:bold;
}
.w-100 {
    width:100%
}
.f-xxlarge {
    font-size: 48px;
}