@charset "UTF-8";

*{
    margin: 0%;
    padding: 0%;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    height: 100vh;
    width: 100vw;
    background-image: url(midias/fundo-madeira.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}
main{
    position: relative;
    height: 100vh;
}
#telefone{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-image: url(midias/frame-iphone.png);
    background-position: center center;
    background-repeat: no-repeat;
    height: 627px;
    width: 311px;
}
iframe#tela{
    position: relative;
    top: 80px;
    left: 20px;
    height: 472px;
    width: 270px;
}
#redes-sociais{
    text-align: right;
    padding: 10px;
}
section#redes-sociais img{
    height: 50px;
    margin: 10px;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.534);
    box-sizing: border-box;
}
section#redes-sociais img:hover{
    border: 2px solid white;
    transform: translate(-3px,-3px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.534);
    transition: transform .3s, border .3s;
}