/* ==========================================
   GLOBAL RESET
========================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Remove default list styling */

ul,
ol {
    list-style: none;
}

/* Remove default anchor styling */

a {
    text-decoration: none;
    color: inherit;
}

/* Images */

img {
    max-width: 100%;
    display: block;
}

/* Improve text rendering */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}