/* 
 * reset.css
 * Purpose: CSS Reset to normalize default browser styles across different browsers. 
 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font: inherit;
    border: none;
    background: transparent;
    outline: none;
}

button {
    cursor: pointer;
}

img, picture, svg, video {
    display: block;
    max-width: 100%;
    height: auto;
}
