@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

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

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

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

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

    height: 573px;
    width: 272px;
    background: url('../imagens/samsung-galaxy.jpg') center center no-repeat;
}

main #camera {
    position: absolute;
    z-index: 2;
    width: 12px;
    height: 12px;
    top: 20px;
    left: 50%;
    background: url('../imagens/camera.png');   
}

iframe#tela {
    position: relative;
    top: 9px;
    left: 7px;
    width: 260px;
    height: 558px;
}

section#redes-sociais {
    width: fit-content;
    position: relative;
    left: 100%;
    transform: translateX(-100%);
    padding: 10px;
    overflow: hidden;
}

section#redes-sociais a {
    display: block;
    width: fit-content;
    position: relative;
    border-radius: 50%;
    margin-bottom: 10px;
}

section#redes-sociais img {
    width: 50px;
    border-radius: 50%;
    border: 0px solid rgb(255, 255, 255);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    transition: .1s ease-in-out;
}

section#redes-sociais img:hover {
    border-width: 2.5px;
    transition: .1s ease-in-out;
}
