Is there a way to apply styles to all the elements of a class directly without having to write like this:
.element-wrapper .coin-box{
  margin: 10px;
  float: left;
}
.element-wrapper .platform{
 margin: 10px;
 float: left;
}
.element-wrapper .goomba{
  margin: 10px;
  float: left;
}
 
     
     
    