@font-face {
    font-family: "firacode";
    src: url('firacode.ttf') format('truetype');
}

html {
    height: 100%;
    background-color: #f3eadb;
    font-family: "firacode";
    font-size: 16px;
}

body {
    height: 100%;
    margin: 0;
}

#navigation_bar_container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    background-color: #f3eadb;
}

#navigation_bar {
    max-width: 700px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

#navigation_bar_logo {
    width: min-content;
    font-weight: 1000;
    color: #f3eadb;
    background-color: #ee6a7c;
    cursor: default;
    font-size: 20px;
    padding: 2px;
    border-radius: 5px;
}

#navigation_bar_spacer {
    flex-grow: 1;
}

.navigation_bar_link {
    color: #34acba;
    cursor: pointer;
    padding: 2px;
    border-radius: 5px;
    text-decoration: none;
}

.navigation_bar_link_selected {
    color: #f3eadb;
    background-color: #34acba;
    cursor: pointer;
    padding: 2px;
    border-radius: 5px;
    text-decoration: none;
}

.navigation_bar_link:hover {
    color: #f3eadb;
    background-color: #34acba;
}

#content_container {
    display: flex;
    justify-content: center;
}

/* end of base style */

#content {
    color: #807395;
    max-width: 700px;
    padding-top: 110px;
    padding-bottom: 70px;
    padding-left: 10px;
    padding-right: 10px;
}

.header {
    font-size: 20px;
    font-weight: 1000;
}
