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

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

body {
  font-family: system-ui, -apple-system, "Helvetica Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

/* input, button, textarea, select {
  font: inherit;
  color: inherit;
}

textarea {
  resize: none;
} */

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

ol,
ul {
  list-style: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* It is given as becuz all image in figma has this border */
}
