body {
    font-family: Arial, sans-serif;
    background-color: #f5f5dc;
    padding: 20px;
}

h1 {
    text-align: center;
}

.container {
    display: flex;
    gap: 20px;
}

textarea {
    width: 50%;
    height: 300px;
    resize: none; /* IMPORTANT */
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
}

#result {
    width: 50%;
    height: 300px;
    background-color: #ffffcc;
    border: 1px solid #000;
    padding: 10px;
    overflow: auto;
}
