/* -------------------------
   Basic CSS Reset
-------------------------- */

/* Remove default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

/* Smooth transition when navigating to anchors */
html {
  scroll-behavior: smooth;
}

/* Ensure the page always fills at least the full viewport height */
body {
  min-height: 100vh;
}

/* Set a consistent base for inputs */
input,
button,
textarea,
select {
  font: inherit;
}

/* Make images easier to handle */
img,
picture,
video {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

