@charset "utf-8";

@import url('https://webfontworld.github.io/pretendard/Pretendard.css');

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

ol,ul,li{
    list-style: none;
}
a{
    display: block;
    text-decoration: none;
    color: inherit;
}
img,svg,video,iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
html,body{
    font-family: 'Pretendard';
    font-size: 100%;

    /* overflow-x: hidden; */
}