body{
    background-color: var(--primary-bg);
}

#header {
    padding: 1em;
    height: auto;
    background: var( --header-bg  );
}

#header .navbar-section {
    height: auto;
}

.col-center {
    justify-items: center;
    align-content: center;
}

.justify-space-between {
    justify-content: space-between;
}

.justify-space-around {
    justify-content: space-around;
}

.justify-space-evenly {
    justify-content: space-evenly;
}

.flex-column{
    flex-direction: column;
}

.sticky{
    position: sticky;
    top:3rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

.mb-4{
    margin-bottom: 2rem;
}