@font-face {
  font-family: "NirmalaS";
  src:
    url("../fonts/NirmalaS.woff") format("woff"),
    url("../fonts/NirmalaS.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.15);
  outline-offset: 3px;
}