@charset "UTF-8";

/* Todas as demais mídias */

/* Typical device breakpoints */
/*Pequenas telas: 600px
Celulares: 600px até 768px
Tablet: 768px até 992px
Desktop: 992px até 1200px
Games telas: acima de 1200px*/

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

    main {
        border: 2px solid black;
        width: 90vw;
    }

    main::after {
        content: 'Teste de imprenssão';
        text-decoration: overline;
    }

    main h1{
        text-shadow: none;
        color: black;
    }

    img#phone {display: none;}
    img#tablet {display: none;}
    img#print {display: block;}
    img#pc {display: none;}
    img#tv {display: none;}
}


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


    img#phone {display: none;}
    img#tablet {display: block;}
    img#print {display: none;}
    img#pc {display: none;}
    img#tv {display: none;}
}

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


    img#phone {display: none;}
    img#tablet {display: none;}
    img#print {display: none;}
    img#pc {display: block;}
    img#tv {display: none;}
}

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


    img#phone {display: none;}
    img#tablet {display: none;}
    img#print {display: none;}
    img#pc {display: none;}
    img#tv {display: block;}
}