.active {
    color: #aaa;
}

.footernav {
    display: flex;
    gap: 3rem;
    letter-spacing: 0.35vw;
    margin-left: 5%;
}

footer {
    background-color: rgb(48, 48, 49);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer {
    display: flex;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.25s;
    cursor: pointer;
}

nav a:hover {
    color: #aaa;
}

.profile {
    display: flex;
    align-items: center;
    color: white;
    margin-right: 3%;
    font-size: small;
    white-space: nowrap;
    user-select: none;
}

#poep {
    transition: 0.5s;
}

.logout {
    border: none;
    background-color: transparent;
    font-weight: bold;
    cursor: pointer;
    margin-left: 1%;
    font-size: medium;
    color: rgb(155, 155, 155);
    text-transform: uppercase;
    transition: 0.5s;
    user-select: none;
}

.logout:hover {
    color: rgb(219, 218, 218);
}