#textarea {
    width: 100%;
    height: 150px;
    font-family: monospace;
    padding: 10px;
}

#output {
    border: 2px dashed #00cec9;
    padding: 20px;
    margin-top: 10px;
    min-height: 100px;
}

.btn_container {
    margin-top: 20px;
    text-align: center;
}

button {
    padding: 10px 15px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: 2px solid #000;
}


.red{
    background-color: red;
    color: white;
}


.green{
    background-color: green;
    color: white;
}


.blue{
    background-color: blue;
    color: white;
}

.yellow{
    background-color: yellow;
    color: white;
}

.black{
    background-color: black;
    color: white;
}

.purple{
    background-color: purple;
    color: white;
}

.orange{
    background-color: orange;
    color: white;
}