/* Container holding the image and the text */
.container {
    position: relative;
    text-align: center;
    color: rgb(236, 20, 20);
  }
  
  .kepala-kanan {
    position: absolute;
    top: 3%;
    right: 32%;
  }

  .kepala-kiri {
    position: absolute;
    top: 3%;
    left: 32%;
  }

  .dada-kanan {
    position: absolute;
    bottom: 75%;
    right: 29%;
  }

  .dada-kiri {
    position: absolute;
    bottom: 75%;
    left: 29%;
  }

  .tangan-kanan {
    position: absolute;
    bottom: 55%;
    right: 28%;
  }

  .tangan-kiri {
    position: absolute;
    bottom: 55%;
    left: 28%;
  }

  .kaki-kanan {
    position: absolute;
    bottom: 20%;
    right: 31%;
  }

  .kaki-kiri {
    position: absolute;
    bottom: 20%;
    left: 31%;
  }
  
  
  
  
  
  
  
  /* Centered text */
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }