@font-face {
  font-family: 'Almoni';
  src: url('./fonts/aaa-fonts/webfont_files/almoni-regular-aaa.woff2') format('woff2'),
    url('./fonts/aaa-fonts/webfont_files/almoni-regular-aaa.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Almoni';
  src: url('./fonts/aaa-fonts/webfont_files/almoni-bold-aaa.woff2') format('woff2'),
    url('./fonts/aaa-fonts/webfont_files/almoni-bold-aaa.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

:root {
  font-size: clamp(14px, 1vw + 3px, 25px);
}

html,
body {
  height: 100%;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

html {
  height: 100%;
}

body {
  font-family: 'Almoni', sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
  direction: rtl;
}

h1 {
  font-size: clamp(1.8rem, 2.3vw, 3rem);
  font-weight: 700;
  margin: 0;
}

h3 {
  font-size: clamp(1.8rem, 1.8vw, 2rem);
  margin: 0;
}

h2 {
  font-size: clamp(2.5rem, 2vw, 3rem);
  font-weight: bold;
  line-height: 0.8;
  margin: 0;
}

h4 {
  font-size: clamp(1.5rem, 1.6vw, 2rem);
  font-weight: 400;
  margin: 0;
  width: 100%;
  text-align: center;
}

p,
.text-regular {
  font-size: clamp(1.2rem, 1.2vw, 1.25rem);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.text-small {
  font-size: clamp(1.2rem, 1.2vw, 2rem);
}

input {
  width: 100%;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  text-align: center;
  border: 0.1rem solid #009245;
  border-radius: 0.2rem;
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  box-shadow: none;
}

button,
a {
  font-family: inherit;
}

a {
  text-decoration: none;
}

li {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

@media (max-width: 768px) {
  .text-small {
    line-height: 1.3;
  }
}