@media (max-width: 1200px) {
  #yourshape {
    width: 50%;
    height: auto;
  }
}

@media (max-width: 768px) {
  #yourshape {
    width: 70%;
    height: auto;
  }
}

@media (max-width: 480px) {
  #yourshape {
    width: 90%;
    height: auto;
  }
}
