:root {
    --color-bg: #131110;
    --color-text:  #d6cfc4;
    --color-red: #d90000;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    background-color: var(--color-bg);
    color: var(--color-text);
}

a {
    color: inherit;
}

.blink {
    text-decoration: underline;
    animation: blinker-i-hardly-know-her 1s step-start infinite;
}

@keyframes blinker-i-hardly-know-her {
    50% {
        color: var(--color-red);
    }
}
