body {
    background-image: url('img/background-lp.png');
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: auto;
}

.content {
    color: #ffffff;
    text-align: left;
    margin-bottom: 15%;
}

.image {
    text-align: center; 
    overflow: hidden;
    max-width: 100%;
    height: auto;
    margin-bottom: auto;
}

.image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image:hover img {
    transform: scale(1.1);  
}

.btn-cta-jogar img {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-cta-jogar:hover img {
    transform: scale(1.1);
}

.img-hand {
    position: absolute;
    left: -70px;
    top: 69%;
    transform: translateY(-50%);
    animation: hand-move .5s infinite alternate;
    z-index: 1;
}

@keyframes hand-move {
    0% {
        left: -70px;
    }

    100% {
        left: -50px;
    }
}



@media (min-width: 769px) {
    .logo {
        margin-left: 2%
    }

    .logo img {
        position: absolute;
        margin-top: 2%;
    }

    .image-actor img {
        margin-left: 10%;

    }
}
@media (max-width: 768px) {
    .img-hand{
        top: 77%;
    }
}
@media (min-width: 376px) and (max-width: 768px){
    .image {
        margin-top: 10%;
    }
}

@media (min-width: 1800px) {
    .img-hand {
        top: 65%;
    }
    
    .image-actor img {
        margin-left: 20%;
    }
}