/* =========================================================
   RESET / FOUNDATION
========================================================= */
*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  -webkit-text-size-adjust: 100%;
}

body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.45;
}

/* =========================================================
   BASIC ELEMENTS
========================================================= */
img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

button{
  font-family: inherit;
  cursor: pointer;
}

input,
button,
textarea,
select{
  font-family: inherit;
  font-size: inherit;
}

/* =========================================================
   UTILITY
========================================================= */
.hidden{
  display: none !important;
}

.center{
  display: flex;
  align-items: center;
  justify-content: center;
}

.small{
  font-size: 14px;
  opacity: .75;
}
