/* 기본 리셋 */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 공통 스타일 */

html {
  font-size: 10px;
}

body {
  font-family: "SpokaHanSansNeo", sans-serif;
  font-size: 1.6;
}

img {
  width: 100%;
  height: auto;
}

.scr-only {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}
button {
  background-color: inherit;
  cursor: pointer;
  width: max-content;
  border: none;
  border-radius: 40px;
}
