  .cristo {
    position: relative;
    bottom: -200px;
    left: 50%;
    width: 70px;
    height: 100px;
    background: #e6e2e2;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
  }
  .cristo .cuerpo {
    position: absolute;
    top: 1px;
    width: 35px;
    height: 130px;
    background: #ffffff;
    border-radius: 5px;
    
    }
  
  .cristo:hover {
    background: #ffffff;
    box-shadow: 0 0 30px #fff;
    transform: scale(1.1);
  }
  
  .cristo .cabeza {
    position: absolute;
    top: -55px;
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
  }
  .cristo .cabello {
    position: absolute;
    top: -50px;
    width: 60px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 50% 50% 0% 0%;
  }

  .cristo .cuello {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 15px;
    background: #f0f0f0;
    border-radius: 10%;
  }
  
  .brazo {
    position: absolute;
    top: 10px;
    width: 80px;
    height: 15px;
    background: #f0f0f0;
    border-radius: 10px;
  }
  
  .brazo.izquierdo { left: -75px; }
  .brazo.derecho { right: -75px; }

  .cristo .base {
    position: absolute;
    top: 120px;
    width: 100px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 10%;

  }
  
  
