/* Medium Devices, Desktops */
@media only screen and (max-width : 1024px) {    

}

/* Small Devices, Tablets */
@media only screen and (max-width : 980px) {
    
   
}


/* Mobile Devices */
@media only screen and (max-width : 640px) {
    
    h2 {font-size: 1.9em;}
    h3{font-size: 1.5em}
    h4{font-size: 1.1em;}

    
    
}

/* Smaller Mobile Devices */
@media only screen and (max-width : 480px) {
   
}

/* Smallest Mobile Devices */
@media only screen and (max-width : 320px) {
   

}


