@charset "UTF";

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

html, body{
  background-color: black;
  height: 100vh;
  width: 100vw;
}
body{
    background-image: url('../imagens/fundo-madeira.jpg');
    background-attachment: fixed;
    background-size: cover;
}

section#telefone{
    position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);

    height: 627px;
    width: 310px;
    background:  url('../imagens/frame-iphone.png') no-repeat top center;
}

iframe#tela{
    position: relative;
    top: 80px;
    left: 21px;

    width: 266px;
    height: 472px;

}

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

section#redes-sociais img{ 
    width: 60px;
    margin: 10px;
    border-radius: 50%;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.415);
}

section#redes-sociais img:hover{ 
    border: 2px solid rgba(255, 255, 255, 0.71);
    transform: translate(-5px);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.636);
    transition: transform .2s;
}