/* START OF STORY CONTENT */

#story_wrapper section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

#story_wrapper .reverse-mobile {
    flex-direction: column-reverse;
}

#story_wrapper section figure {
    width: 100%;
    margin: 25px auto;
}

#story_wrapper section article {
    flex: 1;
}

#story_wrapper .content-left {
    margin-right: 0;
}

#story_wrapper .content-right {
    margin-left: 0;
}
 
#gameplay, #interface {
    box-sizing: border-box;
    width: 100%;
    background-color: black;
    color: #f7f7f7;
    padding: 5% 10%;
    margin: 0;
}

#gameplay article, #interface article {
    margin: 0 10px;
}

@media screen and (min-width: 850px) {
    #story_wrapper section {
        flex-direction: row;
        margin-bottom: 100px;
    }

    #story_wrapper .reverse-mobile {
        flex-direction: row;
    }

    #story_wrapper section figure {
        width: 40%;
        margin: 0;
    }

    #story_wrapper .content-left {
        margin-right: 8%;
    }
    
    #story_wrapper .content-right {
        margin-left: 8%;
    }
  }

