/* Normalize CSS */

/* HTML5 display definitions */
article, aside, footer, header, nav, section {
    display: block;
}

details, figcaption, figure, main, summary {
    display: block;
}

/* Ensure that all elements have box-sizing set to border-box */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove margins and paddings */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, li {
    margin: 0;
    padding: 0;
}

/* Set base body styles */
body {
    line-height: 1.5;
    font-family: sans-serif;
    color: #333;
}

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

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

/* Remove all borders from images */
img {
    max-width: 100%;
    height: auto;
    border-style: none;
}

/* Ensure tables have consistent border-collapse */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove default form field styles */
input, button, textarea, select {
    font: inherit;
    margin: 0;
    padding: 0;
    border: none;
}

/* Set consistent border-box behavior */
input, button, textarea, select {
    box-sizing: border-box;
}

/* Remove default focus styles */
input:focus,
button:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* Remove the focus ring from non-keyboard interactions */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

/* Normalize button styles */
button {
    background-color: transparent;
    color: inherit;
    border: none;
    cursor: pointer;
}