/* ugh */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    font-family: Monospace, sans-serif;
    font-size: 4vw;
}

.text {
    color: green;
    font-weight: bold;  /* Makes the text bold */
    font-size: inherit;  /* Inherit the dynamic font size from body */
}

.cursor {
    color: green;
    font-size: 36px;
    animation: blink 1s step-end infinite;
}

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

@media (max-width: 320px) {
    body {
        font-size: 6vw;
    }
    .cursor {
        height: 1.5em; 
    }
}

@media (max-width: 768px) {
    body {
        font-size: 5vw;
    }
    .cursor {
        height: 1.5em; 
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 36px; 
    }
    .cursor {
        height: 36px;
    }
}