/* larger style/default*/
body{
    margin: 0;
    padding: 0;
    justify-content: space-around;
}
#news{
    width: auto;
    max-width: 1250px;
    height: auto;
    border: black 3px solid;
}
header{ 
    text-align: center;
    height: 120px;
    background: url(images/checkers.jpg);
}
header img{
    margin-top: 20px;
    max-width: auto;
}
h1{
    color: white;
    background-color: black;
}
h3{
    background: #ccc;
    padding: 8px 0 8px 0;
    text-align: center;
}
.story{
    padding: 50px 10px;
    border-bottom: #000080 1px solid;
}
.story h3{
    margin-bottom: 8px;
}
.story img{
    float: left;
    margin-right: 15px;
    border: #000080 1px solid;
}
/*the medium screen*/
@media screen 
and (min-device-width: 400px)
and (max-device-width: 800px){
    #news{
    width: auto;
    max-width: none;
    height: auto;
    border: black 3px solid;
}
    .story{
        margin: 15px auto 15px 5px;
        text-align: left;
        width: auto;
    }
}
/*smaller screens*/
@media screen and (max-width:400px){
    #news .story img{
        display: none;
        font-size: smaller;
    }
}