/* base.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family: "Pretendard", sans-serif; /* or fallback sans-serif */
  background-color: #f8f2e9; /* new background color */
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
/* 
   (Optional) Make entire site smooth scroll:
   This means any anchor links #something 
   will scroll smoothly if the browser supports it.
*/
html {
  scroll-behavior: smooth;
}

/* ... your existing base.css ... */
