@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

:root {
  /* Fonts */
  --font1: "Nunito Sans", sans-serif;
  --font2: "Fraunces", serif;
  /* Colors */
  --text: #000;
  --body-bg: #fff9f2;
  --primary: rgb(212, 235, 178);
  --secondary: rgb(255, 241, 204);
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-color: var(--text) transparent;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--text);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
::-moz-selection {
  /*  Firefox */
  color: var(--body-bg);
  background: var(--text);
}
::selection {
  color: var(--body-bg);
  background: var(--text);
}
html,
body {
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}
body{
 font-family: var(--font1);
  color: var(--text);
  background: var(--body-bg);
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
b,
i,
u,
ul,
ol,
li,
span {
  margin: 0;
  padding: 0;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
/* Similar Components */
h2 {
  font-family: var(--font2);
  font-size: 54px !important;
  letter-spacing: -0.02em;
  line-height: 50px;
}
h3 {
  font-family: var(--font2);
  font-size: 32px !important;
}
h4 {
  font-family: var(--font2);
  text-align: center;
  font-size: 24px !important;
}
h6 {
  font-family: var(--font2);
  font-size: 20px !important;
}
/* Custom Container */
@media (min-width: 1280px) {
  .container {
    max-width: 1200px !important;
  }
}
/* Responsive */
@media (max-width: 767px) {
  h2 {
    font-size: 40px !important;
  }
  h3 {
    font-size: 25px !important;
  }
}