@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Jersey+15&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Silkscreen:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

body {
    font-family: 'Silkscreen', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333;
    background-size: auto;
    background-image: url('/public/assets/clouds.jpg');
    background-repeat: repeat;


}

.borderedondo {
    border-radius: 15px;

}

h1 {
    font-size: 4.0rem;
    margin-bottom: 40px;
}


h2 {
    font-size: 1.2rem;
}


.banner {
    width: 50%;
    margin: 0 auto;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background-color: rgb(255, 242, 244); 
    background-size: cover; 
    padding: 0px;
    height: 130px;
    border-radius: 15px; 
    box-shadow: 0 0 10px rgba(94, 61, 126, 0.664);
  }
  
  /* Estilos del texto */
  .contenido h1 {
    margin: 30px;
    font-size: 5rem;
    color: #333;
  }
  
  .imagen {
    margin-left: auto;
    position: relative; /* Para poder aplicar el gradiente encima de la imagen */
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(255, 242, 244, 0.486), rgba(168, 107, 107, 0)), url(/public/assets/hetlaia.png) no-repeat;
    background-size: 300px;
    border-radius: 15px;
  }

.container {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 10px;
    width: 80%;
    margin: auto;
    background-color: hsla(0, 65%, 73%, 0);
    padding: 10px 50px 30px;
    border-radius: 0px 0px 15px 15px;
    justify-items: center; /* Esto centra los elementos dentro del grid */
}

  .left, .right{
    padding: 15px;
    width: 100%;
    background-color: rgb(241, 213, 161);
    border: solid 1px rgb(216, 186, 129);;

  }



  .updates {
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    font-size: small;
    margin-bottom: 20px;
  }

  .update-box{
    height: 200px;
    width: auto;
    background-color: #f0f0f0;
    padding: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word; /* Permite que las palabras largas salten de línea */
    white-space: normal;
  }

  .update-box::-webkit-scrollbar {
    width: 8px; 
    }

    .update-box::-webkit-scrollbar-thumb {
    background-color: #d49494; /* Color de la barra de desplazamiento */
    border-radius: 10px;

    }

    .update-box::-webkit-scrollbar-thumb:hover {
    background-color: #a14141; /* Color cuando se pasa el ratón por encima */
    }

    .update-box p {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .update-box p time {
        color: rgb(182, 104, 127);
    }

    .comments p {
      font-size: small;
      margin: 10px;
    }

    .blink-container {
      margin-top: 50px;
      gap: 0;
      align-items: center;
    }

    .blink {
      display: block;
      margin: 0;
      padding: 0;
    }

  .middle {
    padding: 0%;
    background-color: rgb(247, 215, 194);
    border: solid 2px rgb(230, 184, 154);
    max-width: 100%;
  }

  .middle img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 10px;
  }

  .middle p {

    margin: 10%;
  }

  .middle h2 {
    margin: 20px 20px 0px 0px;
    text-align: center;
    font-size: 1.5rem;
  }

  .footer {
    background-color: #d49494;
    padding: 20px;
  }

  .footer p {
    color: aliceblue;

  }
  
  .estante {
    line-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    align-items: center;
    width: 100%; /* Se adapta al ancho de .left */
  }
  
  
  .objeto {
    margin: 0;
    padding: 0;
    width: 100%; /* Esto asegura que no se expandan */
  }
  
  
  .objeto img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
  }

  
