* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  /* background-color: var(--color-bg); */
  color: var(--color-text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;

  overflow-x: hidden;
}
@font-face {
  font-family: "MLU Aasha";
  src: url("../asset/fonts/MLU-Aasha.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MLU Jyothish';
  src: url('../asset/fonts/MLU-Jyothish.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
h1,
h2 {
  font-family: "MLU Aasha", sans-serif;
}
:root {
  --color-primary: #14143f;
  --color-accent: #ffd93b;
  --color-white: #ffffff;
  --color-light-bg: #f5f7fb;
  --color-text: #0f172a;
  --color-muted: #6b7280;
}

p {
  font-size: 1rem;
}

a {
  text-decoration: none !important;
}

img {
  width: 100%;
}
.text-center {
  text-align: center;
}
