body {
    background-color: #D8D8D8; /*#3F4F44*/
    min-height: 100vh;
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    grid-template-rows: 200px 1fr;
    line-height: 1.5;
    font-size: large;
    margin:0;
}

aside {
    color: #3F4F44;
}

.post_link:link {
    color: #2C3930;
    text-decoration: none;
}

.post_link:visited {
    color: #3F4F44;
    text-decoration: none;
}

.post_link:hover {
    color: #DB5A6B;
    text-decoration: none;
}

.footer_link:link {
    color: #F08F90;
}

.footer_link:visited {
    color: #AC8181;
}

.footer_link:hover {
    color: #DB5A6B;
}

header {
    position:fixed;
    grid-area: 1 / 1 / 2 / 4;
    top: 0;
    left: 0;
    height: auto;
    overflow-y: visible;
    width:100%;
    background-color: #2C3930;
    color:#FFF6E0;
    z-index: 3;
}

footer {
    grid-row: -1;
    grid-column: 1 / 4;
    text-align: center;
    color:#FFF6E0;
    background-color: #2C3930;
    padding: 10px 0;
    width: 100%;
    z-index: 3;
    position: relative;
    margin-top: auto;
}

.title {
    padding: 20px;
    text-align: center;
}

.content {
    grid-area: 1 / 2 / 3 / 3;
    min-width: 500px;
    text-indent: 10px;
    padding-top: 200px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 100px;
    background-color: #D8D8D8;
    color: #3F4F44;
    z-index: 1;
    overflow-y: auto;
    display: grid;
    grid-template-rows: 1fr 150px 1fr 150px 1fr 150px 1fr 1fr;
    position: relative;
}

.box_1 {
    grid-row: 1 / 2;
    margin-bottom: 20px;
}

.scroll_title_1 {
    grid-row: 2 / 3;
}

.scroll_container_1 {
    border-color: #2C3930;
    background-color: #2C3930;
    border-width: 3px;
    border-style: solid;
    position:static;
    grid-row: 3/4;
    color: #D8D8D8;
    overflow-x: scroll;
    overflow-y: auto;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: row;
    row-gap: 2%;
}

.preview {
    height: inherit;
    text-indent: 10px;
    min-width: 50%;
    flex: 0 0 49%;
    padding: 10px;
    text-align: left;
    margin: 0 1px 0 1px;
    background-color: #D8D8D8;
    color: #2C3930;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.scroll_title_2 {
    grid-row: 4 / 5;
}

.scroll_container_2 {
    border-color: #2C3930;
    background-color: #2C3930;
    border-width: 3px;
    border-style: solid;
    position:static;
    grid-row: 5 / 6;
    color: #D8D8D8;
    overflow-x: scroll;
    overflow-y: auto;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: row;
    row-gap: 2%;
}

.scroll_title_3 {
    grid-row: 6 / 7;
}

.scroll_container_3 {
    border-color: #2C3930;
    background-color: #2C3930;
    border-width: 3px;
    border-style: solid;
    position:static;
    grid-row: 7 / 8;
    color: #D8D8D8;
    overflow-x: scroll;
    overflow-y: auto;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: row;
    row-gap: 2%;
}

.box_2 {
    grid-row: 8 / 9;
}

