@charset "UTF-8";

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

html, body {
    height: 100vh;
    width: 100vw;
    background-color: black;
}

body {
    background-image: url('pacote-d013/pacote-d013/imagens/fundo-madeira.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    background-repeat: no-repeat;
}

main {
    height: 100vh;
    position: relative;
    
}

section#telefone {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 627px;
    width: 311px;
    background-image: url('pacote-d013/pacote-d013/imagens/frame-iphone.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    
}

iframe#tela {
    position: relative;
    top: 80px;
    left: 22px;
    width: 269px;
    height: 471px;
}

section#redes-sociais {
    text-align: right;
}

section#redes-sociais img{
    
    width: 50px;
    height: 50px;
    margin: 10px;
    border-radius: 50%; /*Formando um circulo*/
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.764);
    box-sizing: border-box;
}

section#redes-sociais img:hover {
    border: 2px solid rgb(207, 207, 207);
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.814);
    transition: transform .5s;
}