*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #0A0A0A;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid #00FF88;
    outline-offset: 2px;
}