@import url("header.css");
@import url("nav.css");
@import url("content.css");

/* Global */
html, body {
    width: 100%;
    height: 100%;
    font-family: 'Roobert', sans-serif;
    margin: 0;
}

body {
    visibility: hidden; /* used to delay the css load after js has been loaded to remove "jumping css glitch" */
}

.main-content-nav-header {
    background: #EDEDED;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-self: stretch;
    flex: 1;
}

.content-filler {
}

/* Fonts management */
@font-face {
    font-family: 'Roobert';
    font-style: normal;
    font-weight: normal;
    font-display: block;
    src: url('/font/Roobert-Regular.woff2') format('woff2'),
         url('/font/Roobert-Regular.woff') format('woff');
}
