@charset "UTF-8";

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

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

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

main {
    position: relative;
    flex: 1;
}

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

    min-width: 311px;
    min-height: 627px;

    background: url("../imagens/frame-iphone.png") no-repeat;
}

section#redessociais {
    /* O contêiner dos botões */
    display: flex;
    /* Torna a seção um contêiner flexível */
    flex-direction: column;
    /* Coloca os botões em uma coluna */
    align-items: flex-end;
    /* Alinha os botões para a direita */
}

section#redessociais img {
    /* Estilo dos botões individuais */
    width: 50px;
    margin: 10px;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.400);
    box-sizing: border-box;
}

section#redessociais img:hover {
    border: 2px solid rgba(255, 255, 255, 0.450);
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.550);
    transition: transform 0.03s;
}

iframe#tela {
    position: relative;
    top: 80px;
    left: 22px;

    width: 267px;
    height: 471px;
}

footer {
    text-align: center;
    background-color: black;
    color: whitesmoke;
}