* {
    /*margin: 0;*/

    font-family: sans-serif;
    color: white;
}

body {
    background-color: #332c3d;
    margin: 0;
}

/* COPY HERE */

#navbar {
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 50px;
    max-width:100%;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: #242029;
}

#logoEl {
    width: 50px;
    height: 50px;
    background-color: skyblue;
    background-image: url(/public/logo.png);
    background-size: cover;
}

.navBarBtns{
    width: 75px;
    height: 50px;
    background-color: #242029;
    border: 0px;
    text-decoration: none;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
}

.navBarBtns:hover {
    background-color: #161617;
}

.selectedNavbar {
    background-color: #161617;
}

#mainNavBarBtns {
    display: flex;
    margin: 0;
    width: fit-content;
}

.hidden {
    display: none;
}
/* to here */

#mainContainer{
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
}

#mainContainer > *{
    margin: 10px 0px;
}