/* =====================================================
   Universal Reset
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =====================================================
   HTML
===================================================== */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* =====================================================
   Body
===================================================== */

body {
  min-height: 100vh;
}

/* =====================================================
   Lists
===================================================== */

ul,
ol {
  list-style: none;
}

/* =====================================================
   Links
===================================================== */

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

/* =====================================================
   Media
===================================================== */

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

/* =====================================================
   Forms
===================================================== */

button,
input,
textarea,
select {
  font: inherit;
}

textarea {
  resize: vertical;
}

/* =====================================================
   Tables
===================================================== */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =====================================================
   Buttons
===================================================== */

button {
  border: 0;
  background: none;
  cursor: pointer;
}