@charset "UTF-8";

/* Todas as demais mídias */

/* Typical Device Breakpoints
--------------------------
Pequenas telas: até 600px
Celular: 600px até 768px
Tablet: 768px até 992px
Desktop: 992px até 1200px
Grandes telas: acima de 1200px
*/

@media print { /* IMPRESSÃO */
    body {
        background-image: url("../imagens/back-print.jpg");
        font-family: 'Courier New', Courier, monospace;
    }

    main {
        border: 2px solid black;
    }
    
    main > h1 {
        color: black;
        text-shadow: none;
    }

    main::after {
        content: "Essa impressão foi feita através do site www.cursoemvideo.com";
        text-decoration: overline;
    }

    img#phone {
        display: none;
    }

    img#print {
        display: block;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) { /* TABLET */
    body {
        background-image: url("../imagens/back-tablet.jpg");
    }

    img#phone {
        display: none;
    }

    img#tablet {
        display: block;
    }
}

@media screen and (min-width: 992px) and (max-width: 1200px) { /* DESKTOP */ 
    body {
        background-image: url("../imagens/back-pc.jpg"); /* Desnecessário */
    }

    img#phone {
        display: none;
    }

    img#pc {
        display: block;
    }
}

@media screen and (min-width: 1200px) { /* GRANDES TELAS */
    body {
        background-image: url("../imagens/back-tv.jpg");
    }

    img#phone {
        display: none;
    }

    img#tv {
        display: block;
    }
}