body {
    background-color: rgba(250, 250, 250);
    font-family: 'Arimo', sans-serif;    
  }

  html, body {
  height: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}



 .section-intro {
  margin-top: clamp(80px, 12vh, 160px);
 }

   .preg {
    text-align: center;
    margin-left: clamp(16px, 8vw, 100px);
    margin-right: clamp(16px, 8vw, 100px);
  }

h1 {
    text-align: center;
    padding: 40px;
  }

p {
     margin-left: clamp(5px, 8vw, 30px);
    margin-right: clamp(5px, 8vw, 30px);
  }

section {
  margin-bottom: clamp(10px, 8vw, 50px);
  margin-left: clamp(15px, 8vw, 150px);
  margin-right: clamp(15px, 8vw, 150px);
}


.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: #fff;
    left: 0;
    /*box-shadow: 1px 1px 10px #00000029;*/
    background-color: rgba(250, 250, 250);
    }


.navbar-nav {
  width: 100%;
  display: flex;
  justify-content: right;
  font-size: 20px;
}

.navbar-collapse {
    flex-grow: initial;
  }
 
  .navbar-light .navbar-nav .nav-link {
     color: black;
     font-size: 1rem;
     margin: 0px 15px;
  }

  .navbar-brand {
    padding: 10px;
    margin-left: 100px;
  }


@media screen and (max-width: 991px){
  .navbar-nav {
  text-align: right;
  font-size: 16px;
}


.header {
  margin: 0 0px!important;
}
}

@media screen and (min-width: 991px){
  header {
  margin: 0 50px;
}
}

  .footcol {
    background-color: black;
    padding: 40px;
    display: flex;
    justify-content: space-between;
  }

  footer {
  margin-top: auto;
}

  footer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  footer ul li {
    margin: 0 30px;
    font-size: 25px;
  }

  a {
    color: black;
    text-decoration: none;
  }

  a:hover {
    color: #a72222;
    text-decoration: underline;
  }

  
  .p-footer {
    color: white;
  }



  /* Artistas libros */

.flex-container-biog {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  margin-left: 4vw;
  
}

.flex-item-img img {
  width: 300px; 
  margin-left: 3vw; 
  margin-right: 8vw;
  margin-top: 20PX;
}

@media screen and (max-width: 825px) {
  .flex-container-biog {
    flex-direction: column;
    align-items: center;
    margin-left: 4vw;
    margin-right: 4vw;
  }

  .flex-item-img {
    order: -1; /* imagen arriba */
    margin: 0 auto 20px auto;
    width: 100%;
    text-align: center;
  }

  .flex-item-img img {
    width: 80%;
    max-width: 300px;
    height: auto;
    margin: 0;
  }
}



  /* Seccion libros */

.flex-container-obras {
  display: flex !important;
  flex-direction: row !important;
  margin-top: 50px !important;
  flex-wrap: wrap !important; 
  justify-content: left;
  gap: 6vw;
}



.flex-item-txt {
  height: 320px !important;
  width: 400px;
  margin-bottom: 10px;
}

@media screen and (max-width: 540px) {
  .flex-item-txt {
    height: auto !important;
  }
}

.flex-item-obras {
  width: 300px !important;
  height: 360px;
}


.flex-item-obras img {
  width: 350px !important;
  margin-left: 40px !important; 
  margin-bottom: 15px !important;
}


@media screen and (max-width: 540px) { /* Adjust for mobile */
  .flex-item-obras img {
    width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
  }
}


.flex-item-obras-vale img {
  width: 250px !important;
  margin-left: 40px !important; 
  margin-bottom: 15px !important;
}

.flex-item-obras-mayra img {
  width: 250px !important;
  margin-left: 80px !important; 
  margin-bottom: 15px !important;
}

.flex-item-obras-santi-1 img {
  width: 250px !important;
  margin-left: clamp(20px, 5vw, 70px) !important;
  margin-bottom: 15px !important;
}

.flex-item-obras-santi img {
  width: 250px !important;
  margin-left: clamp(50px, 7vw, 100px) !important;
  margin-bottom: 15px !important;
}


.clickable-image {
  
  cursor: pointer; /* This makes it clear it's clickable */
  transition: transform 0.2s ease-in-out;
  position: relative;
}

.clickable-image:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}


.clickable-image {
  position: relative;
}

