/* 모든 태그들에 대한 공통 초기값 세팅 */
html, body, h1,h2,h3,h4,h5,h6,
p, blockquote, dl,dt,dd,ul,ol,li,hr,div,address,video,
header, main, footer, nav, aside, article, section, figure, figcaption,details,summary,
form, fieldset, legend, input, button, select, option, textarea,
span, em, strong, br, sup, sub, del, s, q, mark, code,img, a,
table, thead, tbody, tfoot, tr,td, th {
    margin:0; padding:0; box-sizing:border-box;
    line-height:1; letter-spacing:0em; word-spacing:0;
    font-size:1em; font-weight:400; color:#000; font-style:normal;
    font-family:'Pretendard', sans-serif;
}/* font-size는 여기서는 em으로 써주고 실제 css작성할때는 rem으로 작성하기
1em=16px */
/* 개별 태그 초기값 */
a {text-decoration:none;}
ul,ol,li {list-style:none;}
fieldset {border:0;}
legend {display:none;}
input {border:0; outline:none;}/* outline은 입력창을 눌렀을때 생기는 테두리 */
button {padding:none; border:none; background:none; cursor:pointer;}/* 커서가 손가락모양으로 바뀌는거 */
table,tr,td,th {border-collapse:collapse;}/* 이중선 없애기 */
select, option {border:0; appearance:none;}
/* Pretendard 글꼴 연결 코드(내가 여기에 넣었음)
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css" /> */
/* Noto Sans KR 글꼴 연결 코드
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap" rel="stylesheet"> */