a {
    text-decoration: none;
    color: white;       /* Adjust */
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    background-color: #905A5A;
    height: 4rem;
}

.nav-bar-items-left {
    font-size: 1.8rem;
    color: #E6E0D8;
    font-family: "Julius Sans One", serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    height: fit-content;
    top: 25%;
    left: 1rem;
}

.nav-bar-items-right{
    display: flex;
    flex-direction: row;
    height: fit-content;
    position: relative;
    top: 30%;
    font-size: 1.5rem;
    font-family: "Julius Sans One", serif;
    font-weight: 400;
    font-style: normal;
}

.nav-bar-items-right a {
    padding-right: 1.2rem;
    color: #E6E0D8;
    transition: 0.33s ease-in-out;
}

.nav-bar-items-right a:hover {
    color: black; /* TODO: THINK OF WHAT COLOR TO USE HERE */   
}

