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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: var(--clr-black);
  background-color: var(--clr-white);
  overflow-x: hidden;
  overflow-x: clip;
}

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

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
}

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

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

/* Remove default button styles */
button:focus, a:focus {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

button:focus:not(:focus-visible), a:focus:not(:focus-visible) {
  outline: none;
}

