@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@100..900&display=swap');

body {
  font-family: Outfit, Poppins, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  background-image: url('/images/bkg.jpg'); /* Ensure the path is correct */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; /* Centers the image */
  height: 100vh; /* Ensures body takes up the full viewport height */
  width: 100vw; /* Ensures body takes up the full viewport width */
  color: #4D534C;
}

h1 {
font-weight: 600 !important;
letter-spacing: -0.06em;
}
h2 {
font-weight: 500;
letter-spacing: -0.02em;
}

p {
  font-weight:300;
}


