/* CSS Reset */

/* 1. Use a more-intuitive box-sizing model. */
*,
*::before,
*::after {
  box-sizing: border-box;
  padding-inline-start: 0;
}

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

/* Typographic tweaks! (3. Add accessible line-height 4. Improve text rendering) */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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


/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img {
  object-fit: cover;
}

/* 6. Remove built-in form typography styles */

input,
button,
textarea,
select {

  /* // Additional resets for further consistency */
  font: inherit;
  border: none;
  background-color: transparent;
  border: none;
  margin: 0;

  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  color: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  line-height: 1.25;
  font-weight: 400;
}

p {
  line-height: 1.5;
}


/* 8. Create a root stacking context */
#root,
#__next {
  isolation: isolate;
}

/* 9. Reset List Stlye */
header,
nav,
ul {
  list-style: none;
}

/* 10. Scroll Behavior */
html {
  scroll-behavior: smooth;
}