body{
    display: flex;
    background-color: #A3A3A3;
}

.logo{
    position: absolute;
    left: 70px;
    top: 40px;
}
.rabisco{
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
}

.texto{
    position: absolute;
    right: 0;
    width: 50%;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    
}

.titulo{
    margin-top: 50px;
    margin-left: 180px;
    font-size: 60px;
    color: white;
}

.texto-comum{
    margin-left: 180px;
    font-size: 40px;
    color: #383636;
}

.mao{
    position: absolute;
    right: 0;
}
.copy{
    position: absolute;
    top: 96vh;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

@media (max-width: 1500px) {
    .rabisco{
        display: none;
    }
    .mao{
        display: none;
    }
    .logo{
    
        left: 40px;
        top: 40px;
    }
    .texto {
        position: relative;
        width: 100%
    }
    .titulo{
        margin: 0 auto;
    }
    .texto-comum{
        text-align: center;
        margin: 0 auto;
    }
    .copy{
        text-align: center;
    }
}