@import url("colors-style.css");

@font-face {
  src: url('/fonts/Inter-VariableFont_slnt,wght.ttf') format('ttf');
  font-family: Inter, sans-serif;

}

body {
  margin: 0px;
  padding: 0px;
  height: 100%;
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  margin: 0px;
  padding: 0px;
  color: var(--grey-10);
}

h1 {
  font-size: 72px;
  line-height: auto;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  line-height: auto;
  font-weight: 700;
}

h3 {
  font-size: 30px;
  line-height: auto;
  font-weight: 600;
}

h4 {
  font-size: 26px;
  line-height: auto;
  font-weight: 600;
}

h5 {
  font-size: 24px;
  line-height: auto;
  letter-spacing: 1.6px;
  font-weight: 600;
}

h6 {
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
}

p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
}

.p-small {
  font-size: 14px;
  line-height: auto;
  font-weight: 400;
}

ul {
  list-style-type: none;
}

a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--grey-30);
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: var(--black-0);
}

a:focus {
  outline-offset: 2px;
  outline: 3px solid #295ECC !important;
  border-radius: 4px;
}

a:active {
  outline-offset: 2px;
  outline: 3px solid #295ECC !important;
  border-radius: 4px;
}

strong {
  font-weight: 600;
}

.regular {
  font-weight: 400;
}

.italic {
  font-style: italic;
}