:root {
    /* colors */
    --bg: #1d2021;
    --text: #fbf1c7;
    --red: #fb4934;
    --green: #b8bb26;
    --yellow: #fabd2f;
    --blue: #83a598;
    --purple: #d3869b;
    --aqua: #8ec07c;
    --orange: #fe8019;
    --gray: #a89984;
}

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

html,
body {
    overflow: hidden;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 100vh;
    width: 100vw;
}

a {
    color: var(--text);
    text-decoration: none;
}

h1,
a,
p {
    font-size: 2rem;
}

.text {
    place-self: center;
    background: linear-gradient(90deg, var(--blue), var(--aqua), var(--blue)) -100%/ 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font: 900 clamp(2em, 10vw, 2rem) exo, sans-serif;
    animation: shimmer 2s linear infinite
}

.text:hover {
    place-self: center;
    background: linear-gradient(90deg, var(--red), var(--purple), var(--red)) -100%/ 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font: 900 clamp(2em, 10vw, 2rem) exo, sans-serif;
    animation: shimmer 2s linear infinite
}


@keyframes shimmer {
    to {
        background-position: 100%
    }
}