@import url("https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900&display=swap");

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;

}

body {
    display: flex;
    flex-flow: column nowrap;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

header {
    display: flex;
    position: fixed;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    z-index: 10000000000000000000000;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
    background-color: #f44336;
    overflow: hidden;
}

.header-container {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    width: 85%;
}

.topbar-container {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}

.menu-icon-container {
    display: flex;
    flex-flow: column nowrap;
    visibility: hidden;
}

.menu-bar {
    width: 35px;
    height: 3.75px;
    background-color: black;
    margin: 2.5px 0;
}

.logo-container {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    height: 28px;
}

.logo-img {
    max-height: 100%;
    max-width: 100%;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.container {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
}

#sidebar {
    display: flex;
    background-color: #666;
    width: 15vw;
    height: 100%;
}

#main {
    display: flex;
    background-color: #fff /*#ECEFF1*/;
    width: 100%;
    height: 100%;
}