body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-align: center;
}

form {
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}

input[type="text"] {
  width: 60%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

input[type="submit"] {
  padding: 10px 20px;
  background-color: rgb(94, 94, 94);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: rgb(209, 10, 7);
}

#persona-select {
  font-size: 16px;
  /* Add this line to adjust the font size */
  width: 70%;
  text-align: center;
  padding: 10px;
  margin-bottom: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  column-count: 3;
  column-gap: 20px;
}

.description {
  color: #999;
  margin-bottom: 10px;
}

.instruction {
  color: #999;
  margin-bottom: 10px;
}

.output {
  width: 70%;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: left;
  margin-top: 20px;
}

.centered-image {
  display: block;
  width: 10%;
  margin: 0 auto;
}

.logo {
  transform: scale(1.0);
  display: block;
  margin: auto;
  width: 40vw;
}

@media only screen and (max-width: 600px) {
  .logo {
    transform: scale(1.0);
    width: 40vw;
  }
}