/* CSS Reset */

/* Remove default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set default font size and line height */
html {
    font-size: 100%;
    /* Default font size of 16px */
    line-height: 1.5;
}

/* Remove default border and background */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
figure,
ol,
ul,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

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

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

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

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

/* Remove default button, input, textarea styling */
button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
}

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

/* Remove image border */
img {
    border: 0;
    max-width: 100%;
    display: block;
}