* {
    /*margin: 0;*/
    background-color: #332c3d;
    font-family: sans-serif;
    color: white;
}

body{
    margin: 0px;
}


/* 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;
}

/* to here */

#mainSettingsContainer {
    margin: 20px;
}

.standardBtn{
    background-color: #242029;
    border: 0;
    border-radius: 10px;
    height: 40px;
    width: 160px;
    font-size: 18px;
    font-weight: 520;
    margin-top: 5px;
}

.standardBtn:hover {
    background-color: #161617;

}