
body {
  background-color: #ffffff;
  color: #000000;
  font-family: Arial, sans-serif;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  margin-bottom: 20px;
}

.logo {
  max-width: 220px;
}

textarea {
  width: 100%;
  max-width: 600px;
  height: 180px;
  font-size: 16px;
  padding: 10px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  resize: vertical;
  border-radius: 4px;
    border: solid 1px #e7e7e7;
}

.botoes {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

button {
  padding: 10px 14px;
  border: none;
  background-color: #00bcd4;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

button:hover {
  background-color: #009eb5;
}
