@charset "UTF-8";

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

html, body {
    height: 100vh;
    width: 100vw;
    background: url(../imagens/foto-fundo.jpeg) no-repeat top center;
    background-size: cover;
}

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

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

iframe#tela {
    position: relative;
    top: 10px;
    left: 12px;
    width: 277px;
    height: 595px;
    border-radius: 44px;
}

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

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

section#redes-sociais img:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.555);
    transition: transform .3s;
}