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

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

main{
    position: relative;
    height: 100vh;
    background: url('../imagens/image-from-rawpixel-id-14683506-jpeg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

#blur{
    backdrop-filter: blur(5px);
    width: 100vw;
    height: 100vh;
}

#cellphone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 311px;
    height: 650px;
    background-color: white;
    background: url('../imagens/frame-iphone.png') no-repeat;
}

#social-media {
    text-align: right;
}

#social-media img{
    height: 50px;
    margin: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

#social-media img:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

#screen{
    position: relative;
    top: 80px;
    left: 22px;
    width: 268px;
    height: 470px;
}


