:root {
  --main_color: #ff4655;
}

body::-webkit-scrollbar {
  display: none;
}

/* 모든 요소의 margin, padding, border를 초기화 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "GmarketSansTTF", sans-serif;
}

/* 링크 스타일 초기화 */
a {
  text-decoration: none;
  color: inherit;
}

/* 표 기본 스타일 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 입력 요소 기본 스타일 초기화 */
input,
button,
textarea,
select {
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
}

/* 이미지 요소 초기화 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 리스트 스타일 초기화 */
ul,
ol {
  list-style: none;
}
