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


html {
    width: 100%;
    margin: 0 auto;
}
html,
body {
    font-family: /*"Poppins"*/"Play", "Noto Sans KR", "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
}

li {
    list-style: none;
}

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

a:visited {
    color: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-weight: 400;
    vertical-align: middle;
    background: none;
    outline: none;
    border: none;
    border-radius: 0;

}

input::placeholder{font-size: 16px;}

legend, caption {
    font-size: 0;
    width: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
    text-indent: -9999px;
}


::selection {
    background-color: grey;
    color: white;
}