@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

html {
  scroll-behavior: smooth !important;
}

body {
  background-color: var(--color-cream);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "PT Serif", serif;

  --color-black: rgb(26, 9, 13);
  --color-white: rgb(244, 243, 242);
  --color-cream: rgb(238, 226, 223);
  --color-green: rgb(34, 139, 120);
}

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

.bg-wrapper {
  position: relative;
  z-index: 0;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(34, 139, 120, 0.4) 10%, rgba(238, 226, 223, 1) 80%);
  z-index: -1;
  pointer-events: none;
}

.bg2-wrapper {
  position: relative;
  z-index: 0;
}

.bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(165, 216, 255, 0.4) 10%, rgba(238, 226, 223, 1) 80%);
  z-index: -1;
  pointer-events: none;
}
