body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
	/*display: flex;*/
	/*justify-content: center;*/
	/*align-items: center;*/
	/*height: 100vh;*/
	/*margin: 0;*/
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    /*padding: 10px;*/
    border-radius: 4px;
    border: 1px solid #ccc;
    /*resize: none;*/
    font-size: 16px;
}

button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}