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

html {
    height: 100%;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    height: 100%;
}

img, picture, svg, video {
    display: block;
    max-width: 100%;
    height: auto; 
}

input, button, textarea, select {
  font: inherit;
}

::selection {
    background-color: var(--primary-color);
    color: #fff;
    text-shadow: none;
}