
body {
    background-color: #0d0d0d;
    color: #00ff66;
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

.terminal {
    max-width: 900px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.prompt { color: #00ccff; }
.command { color: #ffffff; }
.link { color: #ffcc00; text-decoration: none; font-weight: bold; }
.link:hover { text-shadow: 0 0 5px #ffcc00; text-decoration: underline; }

/* Elemento onde o texto será digitado */
#post-content {
    white-space: pre-wrap; /* Mantém as quebras de linha do texto bruto */
    margin-top: 20px;
    display: inline;
}

/* Cursor Piscando */
.cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background-color: #00ff66;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}
@keyframes blink {
    from, to { background-color: transparent }
    50% { background-color: #00ff66; }
}
