* {
    box-sizing: border-box;
}

body {
    --bGColor1: #f3edffff;
    --bGColor2: white;
    --fontColor1: #563fac;

    background-color: var(--bGColor1);
}

#main {
    background-color: var(--bGColor1);
    padding: 2%;
}

.container {
    background-color: var(--bGColor2);
    padding: 1% 5% 1% 5%;
    margin-top: 2%;
    border-radius: 4px;
}

#header-container {
    display: flex;
    justify-content: center;
}

#nav-container {
    /* margin: 1%; */
}

#nav-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.nav-list-item {
    font-weight: bold;
}

.nav-list-item a:link {
    text-decoration: none;
    color: black;
}

.nav-list-item a:visited {
    text-decoration: none;
    color: black;
}

.nav-list-item a:hover {
    text-decoration: none;
    color: var(--fontColor1);
}

.nav-list-item a:active {
    text-decoration: underline;
    font-weight: bold;
}

#name-brand {
    color: var(--fontColor1);
    font-weight: bold;
}

h5 {
    color: grey;
}