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

body{
    margin: 0px;
}

.homeCanvasClass {
    background-color: #f5f5f5;
}

#savedItemsContainer{
    margin: 0;

    display: grid;

    padding: 0;
    place-items: center;
    margin-top: 10px;
    grid-template-columns: repeat(auto-fill, minmax(380px, auto));    
}

#savedItemsContainer > div{
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.standardBtn{
    background-color: #242029;
    border: 0;
    border-radius: 10px;
    height: 50px;
    width: 250px;
    font-size: 18px;
    font-weight: 520;
}

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

}

#newEditorLink {
    background-color: #242029;
    border: 0;
    border-radius: 10px;
    padding: 8px 20px;
    font-size: 18px;
    font-weight: 520;
    text-decoration: none;
    margin-left: 10px;
}

#newEditorLink:hover {
    background-color: #161617;
}

/* 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-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 */
#previouslySavedText {
    margin-left: 10px;
}

#heroSection {
    text-align: center;
}

.hidden {
    display: none;
}