* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink001: #ea7480;
    --pink002: #ffe4e4;
    --backwhite: #fffefe;
    --font: "Abril Fatface";

}

/* 기본 폰트 설정 */
body {
    font-family: 'Pretendard' serif;
    color: #111;
}

/* 리스트 기본 스타일 제거 */
ul,
ol {
    list-style: none;
}

/* 링크 기본 스타일 제거 */
a {
    color: inherit;
    text-decoration: none;
}

/* 버튼 기본 스타일 초기화 */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* input 기본 폰트 상속 */
input,
textarea,
select {
    font-family: inherit;
}

/* 이미지 크기 넘침 방지 */
img {
    max-width: 100%;
    display: block;
}