/* Modern CSS reset */

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

img,
video {
  max-width: 100%;
  display: block;
}

input,
button,
textarea {
  font: inherit;
}

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