@media screen and (min-width: 500px) {
.largeScreen{
    display:none;
}}

@media screen and (max-width: 500px) {
.smallScreen{
    display:none;
}} 

@media screen and (max-width: 500px) {
.smallTitle{
    background-color: #009900; 
    color: antiquewhite; 
	font-family: 'Cormorant Upright', arial, serif; 
    padding-top: 15px; 
	padding-bottom: 15px; 
    font-size: 24px;
}} 