/* Browser Reset CSS - Normalize and Reset */

/* Box-sizing reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margins and padding */
* {
    margin: 0;
    padding: 0;
}

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

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

/* Remove button defaults */
button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}

/* Remove input defaults */
input,
textarea,
select {
    font: inherit;
}

/* Image defaults */
img {
    max-width: 100%;
    display: block;
}

/* Table defaults */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Form element defaults */
fieldset {
    border: none;
    padding: 0;
}

/* Remove default heading margins */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

/* Paragraph defaults */
p {
    line-height: 1.5;
}
