@charset "UTF-8";

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

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

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

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

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;
}

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

}

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

section#redes-sociais img:hover{
    border: 2px solid rgba(255, 255, 255, 0.601);
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.619);
    transition: transform 0.3s;
}

::-webkit-scrollbar{
width: 0px;
height: 0px;
}

footer{
            position: relative;
    top: -29px;

    height: 2vh;

            background-color: rgba(168, 137, 102, 1.0); 
            text-align: center;
            font-size: 0.8em;
            border-radius: 5px;
            border: 1px solid rgba(0, 0, 0, 0.213);
            margin-bottom: 30vh;
            width: 100vw;
            color: white;
        }

        footer a{
            font-weight: bolder;
            color: rgba(220, 204, 185);
            text-decoration: none;
        }

        footer a:hover{
            color: rgb(183, 171, 157);
            text-decoration: underline;
        }