#main-box {
    width: 80%;
    margin: 0 auto;
}

#newslist {
    padding: 1rem;
}

.story {
    margin-bottom: 1.5rem;
}


.post {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-top: 0.1rem solid rgba(13, 49, 64, 0.5);
}

.post iframe {
    width: 27vw;
    height: 15vw;
}

.description {
    width: 70%;
    padding: 0 2rem; 
    margin: 0;
    max-height: 15vw;
    overflow: auto;
    text-align: left;
}

.timestamp {
    font-size: 0.8rem;
    margin: 0.2rem;
}

#pagelist {
    width: 25%;
    color: rgba(207, 210, 219, 1);
    background-color: rgba(13, 49, 64, 0.5);
    padding: 0.25rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
}

#current {
    color: rgba(13, 49, 64, 1);
}

@media only screen and (orientation: portrait) {
    .post {
        flex-direction: column;
    }

    .post iframe {
        width: 45vw;
        height: 25vw;
    }

    .description {
        width: 100%;
        text-align: center;
        padding: 1rem 0 0;
    }
}
