@use 'sass:math';

// Convert PX to REM units
@function rem($size) {
  @return (math.div($size, 16px) * 1rem);
}
