*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: #f1f1f1;
  color: #1a1a1a;
  font-family: "Cocomat", "Noto Sans KR", Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

@media (max-width: 800px) {
  html {
    overflow-x: clip;
  }

  body {
    font-size: 13px;
    line-height: 1.65;
  }
}
