@layer base {
  small {
    font-size: 100% !important;
  }
}

@layer utility {
  .h-30px {
    height: 30px;
  }
  .z-100 {
    z-index: 100;
  }
  .hover-normal {
    transition-property: opacity;
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hover-normal:hover {
    opacity: 0.8;
  }
}
