/* ========================================
   BOX SIZING
   ======================================== */

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}


/* ========================================
   MARGIN & PADDING RESET
   ======================================== */

* {
    margin: 0;
    padding: 0;
}


/* ========================================
   HTML & BODY
   ======================================== */

html {
    font-size: 100%;
}

body {
    min-height: 100vh;
}


/* ========================================
   HEADINGS & TEXT
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}


/* ========================================
   LISTS
   ======================================== */

ul,
ol {
    list-style: none;
}


/* ========================================
   LINKS
   ======================================== */

a {
    color: inherit;
    text-decoration: none;
}


/* ========================================
   IMAGES
   ======================================== */

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}


/* ========================================
   BUTTONS & FORM ELEMENTS
   ======================================== */

button,
input,
textarea,
select {
    font: inherit;
}


/* ========================================
   BUTTON
   ======================================== */

button {
    border: 0;
    background: none;
    cursor: pointer;
}


/* ========================================
   TEXTAREA
   ======================================== */

textarea {
    resize: vertical;
}


/* ========================================
   TABLES
   ======================================== */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* ========================================
   HTML5 ELEMENTS
   ======================================== */

article,
aside,
footer,
header,
main,
nav,
section {
    display: block;
}