@charset "utf-8";

*{
    margin: 0px;
    padding: 0px;
}

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

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

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

section#telefone{

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    height: 627px;
    width: 311px;
    background: url(../pacote-d013/imagens/frame-iphone.png);
    background-repeat: no-repeat;
    
}
iframe#tela{
    position: relative;
    width: 267px;
    height: 471px;

    top: 80px;
    left: 22px;
}

section#redes_sociais img{
    width: 50px;
    height: 50px;

    margin: 10px;

    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.438);
    box-sizing: border-box;
}

section#redes_sociais{
    text-align: right;
}
section#redes_sociais img:hover{
    border: 2px solid rgba(255, 255, 255, 0.684);
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.61);
    transition: transform .3s, border .3s;
}