@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('../imagens/fundo-vaporwave.webp') no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
}
main {
    background-color: rgba(0, 0, 0, 0.300);
    height: 100vh;
    position: relative;
}

section#telefone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 655px;
    width: 311px;
    background: url('../imagens/frame-xiaomi-red.png') no-repeat;
}

iframe#tela {
    background-color: rgb(163, 163, 163);
    position: relative;
    top: 16px;
    left: 17px;
    width: 277px;
    height: 623px;
    border-radius: 25px;
}

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

section#redes-sociais img {
    width: 40px;
    margin: 10px;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.500);
    box-sizing: border-box;
    transition-duration: .2s;
}

section#redes-sociais img:hover {
    transform: translate(-3px, -3px);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.600);
    border-radius: 25%;
    transition: transform 0.2s, border 0.2s, border-radius 0.4s;
}