/*
    body {
        display: grid;
        margin: 0;
        grid-template-columns: 50px 300px 300px;
        grid-column-gap: 5px;
        height: 100vh;
        background-color: #15202B;
    }
*/
body {
    display: grid;
    margin: 0;
    grid-template-columns: 300px 300px;
    grid-column-gap: 5px;
    height: 100vh;
    background-color: #15202B;
}

.column {
    height: 100%;
    overflow-y: scroll;
    scrollbar-width: none;
}

.postContainer {
    padding-bottom: 10px;
    color: lightblue
}

.postContainer a {
    text-decoration: none;
    color: lightblue
}

.secondColumnContainer {
    display: grid;
    grid-template-columns: 90% 10%;
    grid-template-rows: 20px 200px;
    padding-bottom: 20px;
    color: lightblue
}

.secondColumnContainer a {
    text-decoration: none;
    color: lightblue
}

.newImageLinkContainer {
    grid-column-start: 1;
    grid-column-end: 3;
}

.pageNumber {
    align-self: center;
}

.imageContainer.sprite {
    width: 200px;
    height: 300px;
    display: block;
    background-repeat: no-repeat;
    background-color: transparent;
}
/* 
#settingsContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

#favcolorInput {
    display: none;
}

#favcolorLabel {
    font-size: 40px;
    border: none;
    color: #fff;
    cursor: pointer;
    background: none;
}
 */