*{
    box-sizing: border-box;
    transition: all 200ms ease-in;
}
html, body, h1, p, pre{
    padding: 0;
    margin: 0;
}
body {
    background-color: #000;
    color: #0f0;
    font-family: "IBM Plex Mono", monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 5%;
}
main, article{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 520px;
    padding: 0;
    margin: 0;
}
main{
    gap: 24px;
    margin-bottom: 32px;
}
article{
    gap: 16px;
}
h1{
    font-size: 2rem;
}
.typing-container {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
}
.cursor {
    display: inline-block;
    width: 6px;
    height: 2rem;
    background-color: #0f0;
    margin-left: 5px;
    animation: blink 0.7s infinite;
    box-shadow:
        0 0 6px #00ff00,
        0 0 10px #00ff00,
        0 0 15px #00ff00,
        0 0 20px #00ff00;
}

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

h2 {
    font-size: 1.25rem;
}
pre {
    width: 100%;
}
pre.ascii-art {
    line-height: 0.6rem;
    font-size: 0.5rem;
    white-space: pre;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
    user-select: none;
}

pre.ascii-art .glow-char {
    display: inline-block;
    color: #0f0;
    transition: text-shadow 0.3s ease;
}
pre.ascii-art .glow {
    color: #bfff00;
    text-shadow:
        0 0 4px  #00ff00,
        0 0 8px  #00ff00,
        0 0 12px #00ff00,
        0 0 16px #00ff00,
        0 0 20px #00ff00,
        0 0 24px #00ff00,
        0 0 28px #00ff00;
}
p{
    font-size: 0.75rem;
    text-align: center;
}
article p{
    text-align: justify;
}
.ctas{
    display: flex;
    gap: 16px;
}
.btn{
    padding: 8px 16px;
    font-family: "IBM Plex Mono", monospace;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}
.btn.green{
    background-color: #0f0;
    border: 2px solid #0f0;
    color: #000;
}
.btn.stroke{
    border: 2px solid #0f0;
    color: #0f0;
}
.btn.green:hover{
    background-color: rgba(0, 255, 0, 0.8);
}
.btn.stroke:hover{
    background-color: rgba(0, 255, 0, 0.2);
}
@media only screen and (max-width: 460px) {
    pre.ascii-art {
        line-height: 0.525rem;
        font-size: 0.425rem;
    }
}