@mixin size($width, $height: $width) {
  width: $width;
  height: $height;
}

@mixin align-center-both {
  display: flex;
  justify-content: center;
  align-items: center;
}