@charset "UTF-8";

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

html, body {
    height: 100vh;
    width: 100vw;
    background-color: white;
    overflow-y: auto;
}

body {
    background: url('../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('../imagens/frame-iphone.png') no-repeat;
}

iframe#tela {
    position: relative;
    top: 80px;
    left: 22px;
    width: 267px;
    height: 471px;
    border-radius: 2px;
}

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

section#redes-sociais h2, p {
    color: white;
}

img {
    width: 50px;
    height: 50px;
    margin: 10px;
    border-radius: 9px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    transition: 0.2s;
}

img:hover {
    border: 2px solid rgba(255, 255, 255, 0.507);
    width: 55px;
    height: 55px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.507);
    transition: 0.2s;
}

img:active {
    border: 2px solid white;
    transition: 0.2s;
}