/*
 CSS RESET
 */
/* Box sizing for all elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(14px, 1vw + 1rem, 20px);
}

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
menu,
figure,
figcaption,
table,
th,
td,
fieldset,
legend,
hr {
  margin: 0;
  padding: 0;
}

/* Set default font properties and line-height */
body {
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Lexend", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Improve media element handling */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-inline-size: 100%;
}

/* Inherit font styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove text decoration from anchors by default */
a {
  text-decoration: none;
  color: inherit; /* Or your preferred default link color */
}

/* Remove button default styles */
button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
