* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: #e5254d;
  color: #fff;
  text-align: center;
  padding: 1em;
}

header p {
  font-size: 90%;
}

/* Create a container for your content */
.container {
  margin: 0 auto;
  padding: 20px;
}

/* Style for input area */
#inputText {
  width: 100%;
  padding: 10px;
  height: 200px;
  border: 2px solid #ccc;
  border-radius: 5px;
  resize: vertical;
  outline-color: #e5254d;
  font-size: 110%;
}

/* Style for radio buttons */
label {
  display: block;
  font-weight: bold;
  margin-top: 10px;
}

input[type="radio"] {
  margin-right: 5px;
  accent-color: #e5254d;
}

/* Style for the Convert button */
button {
  background-color: #e5254d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

/* Style for the output textarea */
#outputTextarea {
  width: 100%;
  height: 200px;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  margin-top: 10px;
  resize: vertical;
  font-size: 110%;
  outline-color: #e5254d;
}