/* ========================================
Reset CSS
======================================== */

/* Box sizing */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
    margin: 0;
}

/* Reset list */

ul,
ol {
    padding: 0;
    list-style: none;
}

/* Body */

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

/* Links */

a {
    color: inherit;
    text-decoration: none;
}

/* Images */

img,
picture {
    width: 100%;
    display: block;
}

/* Form */

input,
button,
textarea,
select {
    font: inherit;
}

/* Button */

button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Table */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Video */

video {
    width: 100%;
    display: block;
}

/* iframe */

iframe {
    width: 100%;
    border: none;
}

/* Utility */

html {
    scroll-behavior: smooth;
}