@charset "UTF-8";

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

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

main {
    position: relative;
    height: 100vh;
    background: url('../imagens/fundo-madeira.jpg') no-repeat top center;
    background-size: cover;
    background-attachment: fixed;

}

section#telefone {
    position: absolute;

    width: 311px;
    height: 627px;
    background-image: url('../imagens/frame-iphone.png');
    background-color: transparent;
    background-size: cover;
    
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

iframe#tela {
    width: 100%;
    width: 265px;
    height: 471px;
    position: relative;
    left: 23.5px;
    top: 80px;
}

section#redes-sociais {
    text-align: right;
}
section#redes-sociais > a > img {
    margin: 10px 20px;
    border-radius: 50%;
    width: 50px;
    box-shadow: 0px 1px 20px black;
    box-sizing: border-box;
}
section#redes-sociais > a > img:hover {
    border: 3px solid rgba(255, 255, 255, 0.285);
}
section#redes-sociais > a > img:active {
    border: 6px solid rgba(255, 255, 255, 0.285);
}