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

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

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

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