@font-face {
    font-family: "Roboto Mono";
    font-style: normal;
    font-weight: 500;
    font-display: block;
    src: url("fonts/robotomono.ttf") format("truetype");
}

body {
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    height: 100svh;
    font-family: "Roboto Mono", sans-serif;
}

.heading {
    text-align: center;
    font-size: 1.5rem;
    animation: blink step-start 1s infinite;
}

.word {
    max-width: 75ch;
    text-align: left;
    font-size: 0.8rem;
    padding-inline: 1rem;
}

.witnessme {
    display: inline-block;
    transition: color 1s;
}

@media (hover: hover) and (pointer: fine) {
    .witnessme:hover {
        color: #88f;
    }
}

@media (hover: none) and ((pointer: none) or (pointer: coarse)) {
    .witnessme {
        color: #ccf;
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
