@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@400;700&display=swap');
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Satoshi', Arial, sans-serif;
    background: #f8f9fa;
}
label, textarea, button, #output {
    display: block;
    margin: 0.5em auto;
}
#text {
    width: 200px;
    height: 60px;
    resize: none;
    font-size: 1em;
}
#output {
    margin-top: 1em;
    font-family: monospace;
    text-align: center;
}
button {
    padding: 0.5em 1.5em;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #888;
    background: #e9ecef;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover {
    background: #dee2e6;
}
