::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

@supports (-moz-appearance:none) {

    *,
    *::before,
    *::after {
        scrollbar-color: #ffffff68 transparent;
        scrollbar-width: thin;
        scrollbar-width: 4px;
    }
}

::-webkit-scrollbar-track {
    background: transparent;
    padding: 0px
}

::-webkit-scrollbar-thumb {
    background: #ffffff68;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffffc0
}

html {
    scroll-behavior: smooth;
}

body {
    color: #000 !important;
    background-color: #fff;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: hidden;
}

.middle {
    flex-grow: 1;
    position: relative;
    width: 100%;
    z-index: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 4rem 0;
}

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

body,
input,
textarea,
select,
button {
    font-family: monospace;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: monospace;
    font-weight: bold;
}

a {
    color: inherit;
}

br {
    user-select: none;
}

img {
    user-select: none;
    pointer-events: none;
    width: 100%;
    max-width: 450px;
    margin-bottom: 2rem;
}

@media (prefers-color-scheme: dark) {
    html {
        color-scheme: dark;
    }
}

.container {
    width: 90%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}