/*Estilos generales*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
}
body{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background: url(imagenes/libreria.jpg) no-repeat center center/ cover;
}
.contenido-centrado {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
/*Contenedor*/
.contenedor {
  width: 80vh;
  max-width: 600px;
  min-height: 500px;
  background-color: white;
  border: 5px solid black;
  border-radius: 30px;
}
.contenedor-interno{
  width: 80%;
}
/*Contenido*/
#titulo {
  width: 100%;
  font-weight: bold;
  text-align: center;
  font-family: 'Courgette',cursive;
}
#cita {
  font-size: 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px;
}
#autor {
  width: 100%;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Courgette', cursive;

}
#boton-combiar-cita {
  width: 180px;
  height: 50px;
  font-size: 20px;
}