@charset "UTF-8";

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

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

body{
    background: black url(../imagens/fundo-madeira.jpg) no-repeat fixed center center / cover;
}

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

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

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

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

section#redes-sociais img:hover{
    border: 3px dashed rgba(245, 222, 179, 0.700);
    transform: translate(-5px, -4px);
    transition: 0.4s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.608);
}

section#redes-sociais img:active{
    border: 3px solid rgba(245, 222, 179, 0.700);
    transform: scale(95%);
    transition: 0.2s;
}

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


