/* CSS Reset */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html {
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

body {
line-height: 1.6;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

ul, ol {
list-style: none;
}

a {
text-decoration: none;
color: inherit;
}

button {
border: none;
background: none;
font-family: inherit;
cursor: pointer;
}

input, select, textarea {
font-family: inherit;
font-size: inherit;
}

img, svg {
display: block;
max-width: 100%;
height: auto;
}

table {
border-collapse: collapse;
border-spacing: 0;
}
