@charset "UTF-8";
    /* Declarações Gerais */
    *{
        margin: 0px;
        padding: 0px;
        font-family: Arial, Helvetica, sans-serif;
    }

    html, body{
        width: 100vw;
        height: 100vh;
    }
    body{
        background-color: #233eff;
        background-repeat: no-repeat;
        background-size: contain;
    }
    h1{
        color: white;
        text-shadow: 2px 2px 0px #15259d;
        padding: 10px;
    }
        /* Declarações Retrato */
    @media screen and (orientation: portrait) {
        body{
            background-image: url(../imagens/cev-portrait.jpg);
            background-position: center bottom;
            }
    }
    
        /* Declarações Paisagem */
    @media screen and (orientation: landscape) {
        body{
            background-image: url(../imagens/cev-landscape.jpg);
            background-position: left bottom;
            }
    }