/* 해당 css는 수정 시 웹사이트 전체에 영향을 줄 수 있습니다. */
:root {
    --pointColor: #00ffD4;
    --baseColor: #fff;
    --textColor: #000;
    --largeTitle: 60px;
    --mediumTitle: 40px;
    --subTitle: 26px;
    --text: 18px;
    --redDotBg: #ffb5b5;
    --redDotBorText: #c91619;
    --redDotText: #c91619;
    --yellowDotBg: #FFF47C;
    --yellowDotBorText: #F48E00;
    --greenDotBg: #C4FFB5;
    --greenDotBorText: #49aa5e;
    --greyDotBg: #ddd;
    --greyDotBorText: #777;
}

@font-face {
    font-family: 'Pretendard Variable';
    src: url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
    font-style: normal;
}


body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Pretendard';
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul>li {
    list-style-type: none;
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
ul,
li,
table,
thead,
tbody,
tr,
td {
    font-family: 'Pretendard';
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}


h1 {
    font-size: var(--largeTitle);
}

h3 {
    font-size: var(--mediumTitle);
}

p {
    font-size: var(--text);
}