@import url("https://fonts.googleapis.com/css2?family=Kalam&display=swap");

.contenedorGeneral {
  border: 1px solid red;
  width: 80%;
  margin: auto;
  background: #667db6; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #667db6,
    #0082c8,
    #0082c8,
    #667db6
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #667db6,
    #0082c8,
    #0082c8,
    #667db6
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.tituloPrincipal {
  font-size: 45px;
  font-weight: bold;
  font-family: "Kalam", cursive;
}

.escribeMensaje {
  margin-top: 10px;
}

.tipoVozTitulo,
.escribeMensaje {
  font-size: 30px;
  font-weight: bold;
  font-family: "Kalam", cursive;
}

.eligeVoz {
  margin-top: 0.6cm;
  font-size: 20px;
  font-family: "Kalam", cursive;
  /* background-color: lightblue; */
}

.textArea {
  background: rgb(92, 242, 162);
  border-radius: 10px;
  min-width: 10cm;
  max-width: 10cm;
  min-height: 3cm;
  max-height: 3cm;
  margin-top: -0.7cm;
  padding: 10px 15px;
  font-family: "Kalam", cursive;
  font-size: 20px;
  border: 2px solid green;
}

.botonEscuchar {
  font-size: 25px;
  width: 33%;
  background-color: rgb(235, 104, 28);
  font-weight: bold;
  padding: 10px 0;
  margin-bottom: 1cm;
  border-radius: 10px;
  box-shadow: 5px 10px 5px;
}

/* xxxxxxxxxxxxxxxxxxx media query xxxxxxxxxxxxxxxxxxxxxxxx */

@media (max-width: 500px) {
  .contenedorGeneral {
    width: 100%; 
  }
  .tituloPrincipal {
    font-size: 35px;
  }
  .escribeMensaje {
    font-size: 30px;
  }

  .textArea {
    min-width: 7cm;
    max-width: 7cm;
    min-height: 2cm;
    max-height: 2cm;
  }
  .botonEscuchar {
    width: 63%;
  }
}

