// UTILITIES


@mixin debugger($amount: 0.1, $color: red){
  * {
    background: rgba($color, $amount);
    &:before, &:after {
      background: rgba($color, $amount);
    }
  }
}
