@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

body {
    font-family: "Geist", Arial, Helvetica, sans-serif;
    background-color: #0a0a0a;
    text-align: center;
    overflow: hidden;
    color: white;
    margin: 0;
}

::selection, ::-moz-selection {
    color: #0a0a0a;
    background: white;
    text-shadow: none;
}

a {
    text-decoration: none;
    color: #999;
}

h2 { 
    color: #444;
    margin: 0.3em;
}

.content {
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 20%;
}

@keyframes hype {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}


.hype {
    background-image: linear-gradient(90deg, #555, #999, #555);
    animation: hype 5s ease-in-out infinite;
    transition: filter 0.3s ease-out;
    background-size: 400% auto;
    background-clip: text;
    color: transparent;
}

.hype:hover {
    filter: brightness(200%);
}

a:hover { text-decoration: underline; }
.sub { color: #777; }