/* @import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap"); */
:root {
  --theme-color: #3c6bec;
  --text-color: #a6a6a6;
  --whitish-grey: #f1f3ff;
  --font1: "Manrope", sans-serif;
  --font2: "Sora", sans-serif;
  --font3: "Inter", sans-serif;
  --font4: "Nunito", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font1);
}
html{
  scroll-behavior: smooth;
}
body{
  overflow-x: hidden;
}