/* ======== 스타일 초기화 ======== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #f5f6fa;
  color: #222;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

input, button, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

::placeholder {
  color: #aaa;
}