body {
    font-family: 'Oswald';
    font-size: 18px;
}
.wrapper {
    display: flex;
    align-items: stretch;
    margin-top: 54px;
}
.container {
    width: calc(100% - 200px);
    margin-left: 250px;
    min-height: 100vh;
    transition: all 0.4s;
}
#sidebar {
    min-width: 200px;
    max-width: 200px;
    min-height: 100vh;
    background: black;
    color: white;
    transition: all 0.3s;
    position: fixed;
}
#sidebar.active {
    margin-left: -200px;
}
a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}
#sidebar .sidebar-header {
    padding: 20px;
    background: black;
}
#sidebar ul.components {
    padding: 20px 0;
}
#sidebar ul p {
    color: white;
    padding: 10px;
}
#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
}
#sidebar ul li a:hover {
    color: #7386D5;
    background: white;
}
#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: white;
    background: lightblue;
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}