@charset "UTF-8";

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

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

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

}

main {
    position: relative;
    height: 100vh;

}

#telefone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 311px;
    height: 627px;
    text-align: center;
    background: url('frame-iphone.png') no-repeat;

}

#tela {
    position: relative;
    top: 80px;
    left: 1px;
    width: 271px;
    height: 498px;
    
}

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


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

#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.637);
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.628);
    transition: transform .1s, border .3s;
    
}


