.wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
header,
footer {
    height: 50px;
    background-color: #666;
}
.content {
    background-color: #ccc;
    flex: 1;
}
.columns {
    display: flex;
    height: 100%;
}
.main {
    flex: 1;
    background-color: #ccc;
    order: 2;
}
aside {
    width: 20%;
    background-color: #999;
}
.sidebar-first {
    order: 1;
}
.sidebar-second {
    order: 3;
}