:root {
    font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,segoe ui,helvetica neue,Cantarell,Ubuntu,roboto,noto,helvetica,arial,sans-serif;;
    color: var(--text);
    font-size: 13px;
    size: 13px;
    background-color: var(--base);

    --base: #1e1e2e;
    --text: #cdd6f4;
    --accent: #f5c2e7;
}

* {
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

main {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

p {
    font-size: 1.5rem;
    text-align: center;
}

a {
    color: var(--accent);
    font-weight: bold;
    text-decoration: none;
    line-height: 0;
}

.uncolored {
    color: inherit;
}

img {
    width: 8rem;
    height: 8rem;
}

h1 {
    position: relative;
    font-size: 4rem;
}

.accent {
    color: var(--accent);
}

.cursor {
    position: absolute;
    align-self: baseline;
    animation: blink 800ms infinite;
    width: 4px;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--accent);
}

.cursor-instant {
    animation-timing-function: step-start;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
