body {
    background: #0f172a;
    color: white;
    text-align: center;
    font-family: Arial;
}

textarea {
    width: 60%;
    height: 120px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
}

button {
    padding: 10px 20px;
    margin: 10px;
    border-radius: 8px;
    background: #38bdf8;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #0ea5e9;
}

#output {
    margin-top: 20px;
    padding: 15px;
    background: #1e293b;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    word-wrap: break-word;
}