
.merriweather-regular {
    font-family: "Merriweather", serif;
    font-weight: 400;
    font-style: normal;
  }
  body {
      
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    header {
      background-color: #343a40;
      color: white;
      padding: 1em 0;
      width: 100%;
    }
    
    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      padding: 0;
    }
    
    nav ul li {
      margin: 0 1em;
    }
    
    nav ul li a {
      color: white;
      text-decoration: none;
    }
    
    main {
      padding: 2em;
      text-align: center;
      background-image: url(../assets/fondoLibro.jpg);
      background-size: 100%;
    }
.hechizos {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}  
.hechizos h1 {
    width:80% ;
    text-align: center;
    border: 1px solid #343a40;
    background:radial-gradient(circle,#5c6064,#343a40);
    padding: 10px 5px;
    border: #343a40 5px solid;
    border-radius: 15px;
    box-shadow: 3px 10px 20px -7px rgba(0,0,0,0.62);
    margin-bottom: 30px;
} 
.searchH {
  width:60% ;
  padding: 10px 5px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: #343a40 5px solid;
  font-size: 20px;

}
.grid-hechizos {
    width: max-content;
    height: max-content;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 2px azure solid;
    box-shadow: 3px 10px 20px -7px rgba(0,0,0,0.62);
    border-radius: 15px;
    gap: 10px;
    padding: 10px;
    margin-bottom: 100px;
    
} 
.cards-hechizos {
width: 250px;
height: 350px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background:radial-gradient(circle, wheat,rgb(240, 178, 62));
opacity: .9;
border: 2px azure solid;
box-shadow: 3px 10px 20px -7px rgba(0,0,0,0.62);
border-radius: 15px;


} 
.titulo-card-hechizo {
    width: 80%;  
    text-wrap: wrap;      
    border: 1px solid #343a40;
    background:radial-gradient(circle,#5c6064,#343a40);
    padding: 5px 5px;
    border: #343a40 5px solid;
    border-radius: 15px;
    box-shadow: 3px 10px 20px -7px rgba(0,0,0,0.62);

} 
.numero-card-hechizo {
 font-size: 50px;
 font-weight: 900;
 opacity: .5;
 color: azure;
}
.contenido-card-hechizo {
    width:80% ;
    border: 1px solid #343a40;
    background:radial-gradient(circle,#5c6064,#343a40);
    padding: 5px;
    border: #343a40 5px solid;
    border-radius: 15px;
    box-shadow: 3px 10px 20px -7px rgba(0,0,0,0.62);

} 
@media (max-width:860px){
    .grid-hechizos {
        grid-template-columns: 1fr 1fr;
    }
} 
@media (max-width:500px){
    .grid-hechizos {
        grid-template-columns: 1fr;
    }
}

    
  footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    width: 100%;
    bottom: 0;
  }
/* Estilos boton*/
.subir-hechizos {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 50px;
    background-color:#343a40;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10; 
}

.subir-hechizos:hover {
    background-color: #555;
}
