body {
  background-color: #1b0101;

}
@media only screen and (max-width: 768px) {
 body {
   background-color:#092334;
  background-image:none;
 }
}
 

.titulo {
  background-color: #1b0101;
  width: 100%;
  max-width: 500px;
  height: auto;
  text-align: center;
  opacity: 1;
  border-width: thick;
  border-style: ridge;
  border-color: #fff;
  color: white;
  /* Agregamos esta línea para el color del texto */
}


.largefont {
  color: #FF1493;
  font-family: arial;
  font-size: 25px;
  text-decoration: underline red;
}

p {
  background-color: #2f4f4f;
  color: white;
}

.textarea {
  width: 400px;
  height: 200px;
  border: 1px solid #f6f6f6;
  border-radius: 3px;
  background-color: #f6f6f6;
  margin: 8px 0;
  /*resize: vertical | horizontal | none | both*/
  resize: none;
  display: block;
  color: #000
}

.image {
  width: 100%;
  max-width: 500px;
}

.image img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
}

  .imagen:hover {
    -webkit-transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform: rotateY(180deg);
    transform-style: preserve-3d;}


.textos {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
}

.caja {
  margin: auto;
  text-align: center;
  font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  background: #1b4f5d;
  overflow: hidden;
  padding: 20px;
  border-radius: 35px 0px 35px 0px;
  -moz-border-radius: 35px 0px 35px 0px;
  -webkit-border-radius: 35px 0px 35px 0px;
  border: 2px solid #5878ca;
  width: 100%;
  max-width: 500px;
}

.caja p {
  background-color: inherit;
  /* Hereda el color de fondo del contenedor */
  color: white;
  /* Hereda el color de texto del contenedor */
}

.en-linea {
  display: inline-block;
  margin-right: 10px; /* Puedes ajustar este margen según tus necesidades */
}


