/* 
  ViperHarmonics: Modern CSS Reset
*/

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

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    line-height: 1.5;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

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

textarea, input {
    user-select: text;
    font-family: inherit;
    font-size: 1rem;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
}
