body {
    margin: 0px;
    padding: 0px;
    background: #eeeeee;
}

div #logo {
    padding: 8px;
    cursor: pointer;
    display: inline-block;
    /*border: 1px solid red;*/
}

.home-container {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    font-family: 'Montserrat', serif;
    flex-direction: column;
}

.home-header {
    height: 80px;
    display: grid;
    grid-template-columns: 160px 1fr;
    width: 100%;
    background: linear-gradient(to right, rgba(238,238,238,0) 40%, rgba(188,224,224, 0.5) 100%);
}

.home-footer {
    height: 30px;
    flex: none;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    padding: 6px;
    text-align: center;
    background: linear-gradient(to left, rgba(238,238,238,0) 60%, rgba(188,224,224, 0.5) 100%);
}

.home-menu {
    display: inline-block;
    top: 43px;
    position: absolute;
    right: 20px;
}

.home-menu div {
    display: inline-block;
    border: 1px solid lightgray;
    border-bottom: 0;
    background-color: #fff;
    color: teal;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 8px;
}

.home-menu-disabled {
    color: gray !important;
    background-color: lightgray !important;
}