@font-face {
  font-family: "Normal TM";
  src: url("./Normal%20TM.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --font-main: "Normal TM", sans-serif;
  --text: #f8f4ef;
  --text-dark: #3f5c73;
  --pill-bg: rgba(255, 255, 255, 0.72);
  --primary: #5ca2ff;
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.12);
  --shadow-light: 0 8px 18px rgba(255, 255, 255, 0.06);
  --max-content: 1280px;
  --section-width: 980px;
  --features-width: 980px;
  --color-whitesmoke: #f4f4f4;
--fs-32: 32px;
--fs-26: 26px;
--fs-19: 19px;
--text-shadow-1: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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