* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --black: #101010;
  --white: #ffffff;
  --gray: #f8f8f8;
  --gray-second: #a3a3a3;
}

@media (max-width: 1080px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 720px) {
  html {
    font-size: 87.5%;
  }
}
body {
  background: var(--white);
  font-family: "Klee One", sans-serif;
  overflow-x: clip;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}/*# sourceMappingURL=global.css.map */