.font-xl {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.italic {
  font-style: italic;
}

.font {
  font-family: Georgia, 'Times New Roman', serif;
}

.underline {
  text-decoration: underline;
  color: rgb(101, 101, 208);
}

.no-text-deco {
  text-decoration: none;
  color: black;
}

.container {
  margin: 0 0;
  padding: clamp(0.5rem, 1vw, 1rem)   /* top/bottom */
           clamp(1rem, 2vw, 3rem);       /* left/right */

}

.padding-container {
  padding: clamp(0.5rem, 1vw, 1rem)   /* top/bottom */
           clamp(1rem, 2vw, 3rem);
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.no-shrink {
  flex-shrink: 0;
}
.items-center {
  align-items: center;
}

.inline {
  display: inline;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 30px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2 , 1fr);
  gap: 0 30px;
}


.border {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}
.border-t {
  border-top: 1px solid #e0e0e0;
}
.border-b {
  border-bottom: 1px solid #e0e0e0;
}

.shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.padding-y {
  padding-top: 15px;
  padding-bottom: 15px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-xl {
  padding-top: 45px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-lg {
  margin-bottom: 45px;
}

.mr-lg {
  margin-right: 30%;
}

.mt-md {
  margin-top: 8px;
}

.mt-lg {
  margin-top: 15px;
}

.mt-xl {
  margin-top: 45px;
}

.mx-15 {
  margin-left: 15px;
  margin-right: 15px;
}

.mx-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.w-90 {
  width: 90%;
}

.w-80 {
  width: 80px;
}

.w-300 {
  width: 300px;
}

.w-fit {
  width:fit-content;
}

.h-fit {
  height: fit-content;
}

.h-80 {
  height: 50px;
}

.mx-auto {
  margin: 0 auto;
}

.opacity-middle {
  opacity: 0.45;
}

.divider-thin {
  border: none;
  border-top: 1px solid currentColor;
  opacity: 0.15;
}

.overflow-x-auto {
  overflow-x: auto;
}

.button {
  padding: 2px 4px;
  background-color: rgb(246, 242, 242);
  border: 1px solid black;
  border-radius: 4px;
  font-family: system-ui;
  font-size: 13px;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

