
@media (min-width: 0px) and (max-width: 576px) {
    body {
        background-color: #eeff00;
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }
}
 

@media (min-width: 576px) and (max-width: 768px) {
    body {
        background-color: #3cff00;
        font-family: Georgia, 'Times New Roman', Times, serif;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    body {
        background-color: #605fad;
        color: white;
    }
}
 
@media (min-width: 992px) and (max-width: 1200px) {
    body {
        background-color: #ff0000;
        font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    }
}

@media (min-width: 1200px) {
    body {
        background-color: #2f00ff;
        color: white;
    }
}

@media print {
    body{
       background-color: white; 
       font-family: serif;
    }
}