@media only screen and (min-width: 768px) and (max-width: 959px) {
/* stuff defined in here applies to screens that match what's above */
logo.img {width: 400px;height:40px;}
/* make my logo bigger */
}
@media only screen and (max-width: 767px) {
/* the next smaller sized screen
logo.img {width: 200px;height: 20px;}
/* make my logo smaller */
}