@charset "UTF-8";

/* Versão Mobile First */

*{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3em;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    width: 100vw;
    height: 100vh;
}

body{
    background: black url(../imagens/back-phone.jpg) no-repeat;
    background-size: cover;
    background-position: center center;

}

main{
    background-color: rgba(255, 255, 255, 0.64);
    width: 80vw;
    margin: auto;
    border-radius: 10px;
    padding: 10px;
}

h1{
    text-align: center;
    color: white;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.497);
    font-size: 1.5em;
}

img{
    display: block;
    margin: auto;
}

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