@charset "utf-8";
@import url('https://webfontworld.github.io/pretendard/Pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');

/*reset*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

hr {
    display: none;
}

h1 {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    text-indent: -99999px;
    cursor: pointer;
}

img {
    border: none;
}

html {
    font-size: 0.625em;
    /*16*0.625=10*/
}

body {
    font-family: 'Pretendard';
    line-height: 1;
}

header, section {
    scroll-snap-align: start;
}

/*reset*/