/* md */
@media screen and (max-width: 1200px) and (min-width: 901px) {

    aside {
        display: none;
    }

    div.centered {
        position: static;
        margin: 0px auto 0px auto;
        display: flex;
        flex-direction: column;
        width: max-content;
        align-items: flex-end;
        background-color: var(--background-color);
        font-family: var(--font-family);
        color: var(--text-color);
        font-size: 15px;
        overflow-x: hidden;
    }
    
    div.main-content {
        grid-column-start: 2;
        grid-column-end: 5;
        justify-self: center;
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: flex-end;
        background-color: var(--background-color);
        font-family: var(--font-family);
        color: var(--text-color);
        font-size: 15px;
        overflow-x: hidden;
    }
    
}