/*
 * CSS Reset for BoxKun Theme
 * 브라우저 기본 스타일 초기화
 */

html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, 
dl, dd, ol, ul, menu, 
figure, blockquote, p, pre, form {
    margin: 0;
}

menu, ol, ul {
    padding: 0;
    list-style: none;
    list-style-image: none;
}

main {
    display: block;
}

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

a, button, input {
    -webkit-tap-highlight-color: transparent;
}

img, svg {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

button {
    background: transparent;
    overflow: visible;
    border: none;
    cursor: pointer;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
