@charset "UTF-8";

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

html, body{
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.589);
}

body{
    background-image: url('../imagens/fundo-madeira.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
}

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

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

#tela{
    position: absolute;
    top: 80px;
    left: 23px;
    width: 265px;
    height: 471px;
}

#redes-sociais{
    text-align: right;
    display: flex;
    flex-direction: column;
}

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

#redes-sociais img:hover{
    border: 2px solid rgba(255, 255, 255, 0.700);
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.600);
    transition: transform .5s;
}