html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 여기에도 줘보자 */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", sans-serif;
}

ul li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}
button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
