:root{
    --bg-dark-0: #282828;
    --bg-dark-1: #1d2021;
    --bg-dark-2: #131718;
    --bg-dark-3: #504945;
    --header: #b16286;
    --main-text: #ebdbb2;
    --highlight-text: #fbf1c7;
    --sub-text: #bdae93;

    /* dimensions */
    --header-height: 20vh;
    --sidebar-width: 40vh;
}

.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.roboto-condensed {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "GRAD" 0;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: var(--bg-dark-3);
    font-family: "Roboto Condensed", sans-serif;
}

.headerBar{
    background-color: var(--bg-dark-1);
    font-family: "Bebas neue", sans-serif;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: var(--header-height);
    
}
.homeButton{
    background-color: var(--bg-dark-2);
    width: var(--sidebar-width);
}

.header{
    color: var(--header);
    font-size: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
}

.sideBar{
    background-color: var(--bg-dark-0);
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
}


