body {
    margin: 0px;
}

article {
    display: flex;
    height: auto;
    min-height: 100%;
    flex-direction: row;
}

.menu {
    top: 0;
    height: calc(100vh - 32px);
    width: 18vw;
    background-color: #F1F1FF;
    padding-top: 32px;
    z-index: 100;
    overflow: scroll;
    position: -webkit-sticky;
    position: sticky;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.menu::-webkit-scrollbar {
    display: none;
}

.border {
    top: 0;
    width: 4px;
    height: auto;
    background-color: #D0D0D0;
    border-left: solid 1px #AAAAAA;
    border-right: solid 1px;
    padding-top: 32px;
    position: -webkit-sticky;
    position: sticky;
}

main {
    width: 82vw;
    height: auto;
    padding-top: 32px;
    flex-grow: 1;
}

.responsive_button {
    display: none;
    position: fixed;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 40px;
    cursor: pointer;
    z-index: 101;
    margin: 16px;
}

.menu_line {
    background: #696969;
    width: 32px;
    height: 4px;
    margin: 4px;
}

.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: #000000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .responsive_button {
        display: flex;
    }

    .menu, .border {
        display: none;
        position: fixed;
        width: 50vw;
    }
}
