/* 프리텐다드 웹폰트 연결 */
@import url('https://webfontworld.github.io/pretendard/Pretendard.css');

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

html,body{
    font-size: 100%;
    font-family: 'Pretendard', sans-serif;
    overflow-x: hidden;
}

ul,li{
    list-style: none;
}

a{
    text-decoration: none;
    color: inherit;
    display: block;
}

img,svg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}