/* ====================================================================
   MODERN CSS RESET
   Based on Andy Bell's Modern CSS Reset
   https://andy-bell.co.uk/a-modern-css-reset/
   ==================================================================== */

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML & Body */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
}

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

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

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

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

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

button {
  cursor: pointer;
}

/* Paragraphs */
p {
  overflow-wrap: break-word;
}

/* Code blocks */
code,
pre {
  font-family: monospace;
}

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

/* Remove default focus outline (will be added by our CSS) */
:focus-visible {
  outline: none;
}
