/* =========================
   RESET CSS - GLOBAL STYLE
   ========================= */

/* Reset margin, padding */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Body */
body {
    min-height: 100vh;
    line-height: 1.3;
    text-rendering: optimizeSpeed;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    color: #000;
}

/* Remove list styles */
ul,
ol {
    list-style: none;
}

/* Remove link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Media */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Form */
input,
button,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Button */
button {
    cursor: pointer;
}

/* Table */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Textarea */
textarea {
    resize: vertical;
}

/* Quotes */
blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
}

/* Heading */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

/* Strong */
strong,
b {
    font-weight: bold;
}