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

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

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

/* Body */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

/* Form elements */
input,
button,
textarea,
select {
    font: inherit;
    outline: none;
    border: none;
    background: none;
}

/* Buttons */
button {
    cursor: pointer;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

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

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Heading */
h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
}

/* Remove quote styles */
blockquote,
q {
    quotes: none;
}

/* HTML5 elements */
article,
aside,
footer,
header,
nav,
section,
main {
    display: block;
}
img{object-fit: cover;max-width: 100%;}


