@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500&display=swap');


/* + --------------------------------------------------------------------------------------------------------------------------------
 * | color
 * +-------------------------------------------------------------------------------------------------------------------------------*/

 html {
    --color-green: #49ab22;
    --color-charcoal: #4a4e58;
    --color-light-gray: #cdcdcd;
    --color-blue: #00abe4;
 }


/* + --------------------------------------------------------------------------------------------------------------------------------
 * | reset
 * +-------------------------------------------------------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* + --------------------------------------------------------------------------------------------------------------------------------
 * | typography
 * +-------------------------------------------------------------------------------------------------------------------------------*/

html, input, select, textarea {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

a, a:hover, a:visited, a:active {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

/* + --------------------------------------------------------------------------------------------------------------------------------
 * | header
 * +-------------------------------------------------------------------------------------------------------------------------------*/

header.main {
    background-color: white;
    box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.33);
    height: 108px;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.33); 
}

aside.notice {
    background-color: var(--color-green);
    color: white;
    display: flex;
    flex-direction: column;
    height: 48px;
    justify-content: center;
    text-align: center;
    width: 100vw;
}

div.logo {
    height: 60px;
    text-align: center;
    width: 100vw;
}

/* + --------------------------------------------------------------------------------------------------------------------------------
 * | nav
 * +-------------------------------------------------------------------------------------------------------------------------------*/
nav.main {
    background-color: var(--color-charcoal);
    height: calc(100vh - 110px);
    width: 235px;
}

 nav.main .menu-item {
    align-items: center;
    background-color: var(--color-charcoal);
    border-bottom: solid white 1px;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 55px;
    justify-content: flex-start;
    padding-left: 15px;
    padding-top: 2px;
    width: 235px;
}

nav.main .menu-item.active {
    background-color: var(--color-blue);
}

nav.main .menu-item:not(.active):hover {
    background-color: var(--color-green);
}

nav.main div.icon {
    text-align: center;
    width: 35px;
}

/* + --------------------------------------------------------------------------------------------------------------------------------
 * | application
 * +-------------------------------------------------------------------------------------------------------------------------------*/

div.application {
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    height: calc(100vh - 110px);
    margin-top: 110px;
}

main.content section {
    display: none;
}

main.content section.active {
    display: flex;
}

/* + --------------------------------------------------------------------------------------------------------------------------------
 * | general
 * +-------------------------------------------------------------------------------------------------------------------------------*/

html, body {
    background-color: var(--color-light-gray);
    min-height: 100vh;
    overflow-y: hidden;
}

.constrained-center {
    margin: 0 auto;
    max-width: 1200px;
}




