html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}*{
    margin: 0;
    padding: 0;
}
body {
    background: #FF6600;
    font-family: Verdana, Geneva, sans-serif;
    height: 100vh;
    /*F4ECE0*/
}
p {
    color: #222;
}
#title_container {
    text-align: center;
}
h1 {
    font-size: 40px;
    font-weight: bold;
    padding: 5px;
}
h2 {
    font-size: 24px;
    padding: 5px;
    color: #222;
}
hr {
    border-top: 1px solid #ccc;
    width: 500px;
    margin: 0 auto;
}
#content {
    background: #F4ECE0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 20px;
    padding-bottom: 30px;
}
h3 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    color: #222;
}
li {
    list-style: none;
    padding: 10px 5px;
}
li:hover {
    color: #FF6600;
    cursor: pointer;
}
#story_titles, #article {
    height: 550px;
    width: 400px;
    /*border: 1px solid #ccc;*/
    padding: 5px;
    background: #F6F6EF;
    /*box-shadow: 0px 0px 30px 6px rgba(0,0,0,0.37);*/
    margin: 0 40px;
}
#story_titles {
    overflow: auto;
}
#article p {
    word-wrap: break-word;
    padding: 10px 5px;
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 12px;
    background-color: #F6F6EF;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 1px;
    background: #F6F6EF;
}
::-webkit-scrollbar-thumb {
    border-radius: 1px;
    background: #ccc; 
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
}
::-webkit-scrollbar-thumb:hover {
    background: #999;
}
footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 30px 0;
}

/*mobile media query*/

@media only screen 
  and (max-width: 450px) {
h1{ 
    font-size: 35px;
}
h2{
    font-size: 20px;
}
h3{
    font-size: 18px;
    margin-top: 7px;
}
#content{
    flex-direction: column;
    width:350px;
}
#article_container{
    order: 1;
}
#story_container{
    order: 2;
}
#story_titles, #article{
    height: 300px;
    width: 300px;
    margin: 0 25px;
}
#article{
    height: 275px;
}
#article h2{
    font-size: 18px;
}
}