
html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    height: 100vh;
    margin: 0px;
}

#root {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0px;
    padding: 0 0px 0 0px;
}

#header {
    color: #323232;
}

#container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

#footer {
}

#logo {
    padding-left: 8px;
    height: 75px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo a {
    color: #323232;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: background-color 0.3s;
}

#logo a:hover {
    background-color: rgba(220, 220, 220, 0.9);
    border-radius: 8px;
}

#logo .home-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

#titleContainer {
    height: 75px;
    float: right;
    display: flex;
    align-items: center;
    padding-right: 8px;
}

.title_h1 {
    font-size: 24pt;
    font-weight: normal;
}