/* CSS - Reset command  */
body,header,main,section,span,div,aside,article,
ol,ul,li,h1,h2,h3,h4,a,p{
    margin:0;
    padding:0;
    border:0;
}

/* All CSS customization starts here*/
body{
    background-color: #5CDB95;
}


/* Media Queries Section: Desktop - Tablet - Mobile Phones */

/* --- MOBILE PHONES---- */
@media only screen and (max-width: 600px){
    #header_desktop,#main_desktop,#footer_desktop,
    #header_tablet,#main_tablet,#footer_tablet{ display:none;}
}

/* --- TABLETS---- */
@media only screen and (min-width: 786px){
    #header_desktop,#main_desktop,#footer_desktop,
    #header_mobile,#main_mobile,#footer_mobile{ display:none;}
    
    #header_tablet,#main_tablet,#footer_tablet{display:block;}
    
}

/* --- DESKTOP---- */
@media only screen and (min-width: 992px){
    #header_mobile,#main_mobile,#footer_mobile,
    #header_tablet,#main_tablet,#footer_tablet{ display:none;}
    
}