﻿.app {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    
    background-color: white;
    border: 1px solid black;
}

.body {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 750px;

    border-top: 1px solid black;
}

.titlespace {
    display: flex;
    width: 100%;
    height: 75px;
    align-items: center;
    background-color: white;
}

.title {
    display: flex;
    width: 100%;
    height: 50px;
    padding-left: 12.5px;
    background-color: white;
}

.main-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 750px;
    width: 100%;
    padding: 10px;
}

.navi {
    width: 150px;
    height: 749px; /* -1px cause .app border */
    background-color: #b3be13;
}

#title {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    font-weight: bold;
    font-size: 20px;
}

li {
    padding: 1em;
    list-style: none;
    border-bottom: 3px solid #c5ce4c;
}

.selectedPage {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

a {
  color: white;
  text-decoration: none;
}

ul {
    margin-top: 0px;
    padding-left: 0px;
    background-color: #b3be13;
    /* border-top: 3px solid #c5ce4c; */
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 14px;
}