/* 브라우저 기본 스타일 제거용 CSS 파일 */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

html,
body {
  height: 100%;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1;
}

ul[role="list"],
ol[role="list"],
li {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  width: 100%;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  outline: none;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #111;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
}
