/* Reset some default styles */
* {
  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;
}

label {
  display: block;
  font-weight: bold;
  margin-top: 10px;
}

/* Style text input and text area */
input[type="text"], textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 4px;
    height: 200px;
    outline-color: #e5254d;
    font-size: 110%;
}

/* Style select element */
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #ffffff;
    outline-color: #e5254d;
}

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

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

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

/* Style the output div */
#output {
    margin-top: 20px;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline-color: #000000;
}

/* Style the output textarea */
#outputTextarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    margin-top: 10px;
    border: 2px solid #ccc;
    border-radius: 4px;
    outline-color: #e5254d;
}