body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 50px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
	/* Set the height of the rows */
  height: 200px;
	
}

button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

#result {
    font-weight: bold;
    color: green;
    margin-top: 20px;
}
