/* ===== CSS RESET ===== */

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

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

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

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

/* Reset images */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

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

/* Set base body defaults */
body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
