/* CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove default margins */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
figure {
    margin: 0;
}

/* Remove list styles */
ol, ul {
    list-style: none;
}

/* Remove default button styles */
button {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

/* Remove default input styles */
input, textarea, select {
    font: inherit;
    color: inherit;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default image styles */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Remove default table styles */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove default form styles */
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/* Remove default quote styles */
blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
    content: '';
    content: none;
}

/* Remove default details styles */
details {
    display: block;
}

summary {
    display: list-item;
}

