@charset "UTF-8";

/* Configurações gerais */
@media all {

    * {
        margin: 0px;
        padding: 0px;
        font-family: Arial, Helvetica, sans-serif;
    }

    html, body {
        width: 100vw;
        height: 100vh;
        background-color: #233eff;
        background-repeat: no-repeat;
        background-size: contain;
    }

    h1 {
        color: white;
        text-shadow: 2px 2px 0px #1526a7;
    }
}

/* Configurações retrato/portrait */
@media screen and (orientation: portrait) {
    body {
        background-image: url("../imagens/cev-portrait.jpg");
        background-position: center bottom;
    }
}

/* Configurações paisagem/landscape */
@media screen and (orientation: landscape) {
    body {
        background-image: url("../imagens/cev-landscape.jpg");
        background-position: left bottom;
    }
}