*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}
input,
button,
textarea,
select {
    font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}
p {
    text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}
#root,
#__next {
    isolation: isolate;
}
@font-face {
    font-family: "Satoshi-Regular";
    src:
        url(fonts/Satoshi-Regular.woff2) format("woff2"),
        url(fonts/Satoshi-Regular.woff) format("woff"),
        url(fonts/Satoshi-Regular.ttf) format("truetype");
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}
:root {
    --bg: #121212;
    --black: #000;
    --white: #ffffff;
    --blue: #1e90ff;
}
a {
    text-decoration: none;
    color: var(--white);
    position: relative;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--blue);
}
body {
    font-family: "Satoshi-Regular";
    font-size: 18px;
    color: var(--white);
    background: var(--bg);
    position: relative;
}
.pagewrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100dvh;
}
header {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.links {
    text-align: right;
}
.marquee-text {
    overflow: clip;
    background: var(--black);
    padding: 6px 0;
}
.marquee-text-track {
    display: flex;
    padding-left: 1rem;
    gap: 1rem;
    width: max-content;
    animation: marquee-move-text var(--speed, 30s) linear infinite var(--direction, forwards);
}
.marquee-text p {
    padding: 0;
    color: var(--white);
}
@keyframes marquee-move-text {
    to {
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .links {
        text-align: left;
    }
}
