@charset "UTF-8";

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

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

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

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

section#telefone{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    height: 500px;
    width: 375px;
    background-image: url(../imagens/celular.png);
    background-repeat: no-repeat;
}

iframe#tela{
    position: relative;
    top: 40px;
    left: 27px;
    width: 318px;
    height: 425px;
}

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

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

section#redes-sociais img:hover{
  border: 2px solid white; 
  transform: translate(-3px , -3px); 
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.397);
  transition: transform .3s, border 0.5s;
}