/**
 * CSS Reset
 * Removes browser default styling
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Remove default link styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove button styling */
button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

/* Reset form elements */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
