.contenedor {
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
}

.encabezado {
  display: flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 10px;
}

.titulo h1 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 2rem;
  width: 70%;
  color: rgb(177, 62, 62);
}

.navegador nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.navegador nav a {font-size: 1rem;}

.foto-inicial-pequeña {
 width: 100%;
 display: block;
}

.foto-inicial-grande {
 width: 100%;
 display: none;
}
  
.argumento {
  font-family:Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-top: 10px;
  padding: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background-color: #fffcbc;
}

.argumento p {line-height: 1.5;}

.matthew,
.kate {
  gap: 15px;
  align-items:start;
}

.caja-imagen-personaje {
float: left;
}

.personajes {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: auto;
  margin-top: 10px;
  margin-bottom: 2px;
  color:#ffffff;
}

.imagen-personaje{
  width: 250px;
  height: 350px;
  object-fit: cover;
  margin-right: 20px;
  margin-bottom: 5px;
}

.texto-personaje {
  margin-top: 0;
  font-size: 1rem;
}

.personaje-izquierdo,
.personaje-derecho {
  flex: 1;
  font-family: Arial, Helvetica, sans-serif;
  padding: 10px;
  background-color: rgb(177, 62, 62);
  line-height: 1.5;
  height: auto;
  font-size: 1rem;
  color:white;
  border-radius: 20px;
}

.boton {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;;
}

a:link {
  color: #dd9f00;
  text-decoration: none;
}

a:visited {color:rgb(0, 0, 0) }

a:hover {color:rgb(177, 62, 62)}

footer {
  text-align: center;
  padding: 0.5px;
  color: #000000;
  font-family: Helvetica;
  font-weight: 400;
  font-size: 0.9em;
}

@media (min-width:850px) {
  .contenedor {
  width: 80%;
  }

  .titulo h1 {
    font-size: 3rem;
    width: 60%;
  }

  .navegador nav {
    flex-direction: row;
    gap: 15px;
  }

  .navegador nav a {font-size: 1.2rem;}

  .argumento {font-size: 1rem;}

  .personajes {
  display: flex;
  flex-direction: row;
  }

  .texto-personaje {
  font-size: 1rem;
  }

  .foto-inicial-pequeña {
  width: 100%;
  display: none;
  }

  .foto-inicial-grande {
  display: block;
  }
}
