body {
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: 'Courier New', monospace;
    color: #00ff00;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

main {
    text-align: center;
    font-size: 3rem;
    text-transform: uppercase;
}

#text {
    margin-right: 0.2rem;
}

.cursor {
    animation: blink 1s infinite;
}

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

.banana-link {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    font-size: inherit;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s;
    color: #00ff00;
}

.banana-link:hover {
    opacity: 1;
}

.tip-link {
    position: fixed;
    bottom: 1rem;
    right: 3rem;
    font-size: inherit;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s;
    color: #00ff00;
}

.tip-link:hover {
    opacity: 1;
}
