Flex zombies chapter 7 level 20

Hello, I’ve had trouble completing this level of Flex Zombies, would someone be able to assist?

crossbow {display:flex;
align-items:center;
justify-content:center;



  
}

.target.goo {
  flex-basis:200px;
  min-width:300px;
}

.target:nth-of-type(1) {
  flex-shrink:0;
  min-width:auto;
  
}

.target:nth-of-type(2) {
  flex-shrink:1;
 
  
  
}```

out of curiosity (I’m only in level 3~4), did the hint in the game provides no help?

It gave hints, but it wasn’t enough to help me through it, I’m going to try again today.

Hi,
If you have not solved it yet this is the solution :

crossbow {
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.target.goo {
  flex-basis:200px;
}

.target:nth-of-type(1) {
  flex-shrink: 0;
}

.target:nth-of-type(2) {
  min-width: 300px;
}