@charset "UTF-8";
* {
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
}
html, body {
    height: 100vh;
    width: 100vw;
    background-color: black;
}
body {
    background: url('../imagens/fundo-madeira.jpg') no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
}
main {
    position: relative; /*section#telefone-> position: absolute;*/
    height: 100vh;
}
section#telefone {
    position: absolute; /*main -> position: relative;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    height: 628px;
    width: 311px;
    background: url('../imagens/frame-iphone.png') no-repeat;
}
iframe#tela {
    position: relative;
    top: 80px;
    left: 22px;
    width: 269px;
    height: 471px;
    background-color: brown;
}
section#redes-sociais img {
    width: 50px;
    margin: 10px;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgb(0, 0, 0, 0.5);
    box-sizing: border-box;
}
section#redes-sociais {
    text-align: right;
}
section#redes-sociais img:hover {
    border: 1px solid white;
    transform: translate(-2px, -2px);
    box-shadow: 2px 2px 5px rgb(0, 0, 0, 0.5);
    transition: 0.5s;
}