
/*
div.galeria{
    margin: 10px 20px;
    box-shadow: 0 4px 8px 0 lightskyblue, 0 6px 20px 0 rgba(0, 0, 0, 19);
    float: left;
    width: 450x;
    justify-content: center;
    align-items: center;

  
    
}
div.galeria img{
    width: 100%;
    height: auto;
   
  
    
}
  
div.galeria:hover{
    border:  1px solid lightgreen;
    transform: rotate(-3deg);
}

div.pie{
    text-align: center;
    text-shadow: 2px 2px 5px blue;
    padding: 10px;
}

.principal{
    max-width: 100%;
    margin: auto;
    justify-content: center;
    align-items: center;
}
    */



img{
    width: 100%;
    object-fit: cover;
}
.galeri-container{
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    
    gap: 35px;

}
.galeri-container img{
    height: 100%;
}

div.galeria:hover{
   
    transform: rotate(-3deg);

}
div.pie{
    text-align: center;
    text-shadow: 2px 2px 5px greenyellow;
    padding: 10px;
}


body{
    background-image: url(../imagenes/fondo-gris);
    background-size: cover;
}
.hi-slide{
    position: relative;
    width: 850px;
    height: 292px;
    border-radius: 50px;
    margin: 115px auto 0;
}
.hi-slide .hi-next,
.hi-slide .hi-prev{
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -20px;
    border-radius:50px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    background-color: #2a3133;
    color: white;
    transition: all 0.7s;
    font-size:20px;
    font-weight: bold;

}

.hi-slide .hi-next:hover,
.hi-slide .hi-prev:hover{
    opacity: 1;
    background-color: white;

}

.hi-slide .hi-prev{
    left: -85px;
}
.hi-slide .hi-prev::before{
    content: '<';
}
.hi-slide .hi-next{
    right: 30px;
}
.hi-slide .hi-next::before{
    content: '>';
}
.hi-slide > ul{
    list-style: none;
    position: relative;
    width: 654px;
    height: 292px;
    margin: 0;
    padding: 0;
}
.hi-slide > ul > li{
    overflow: hidden;
    position: absolute;
    z-index: 0;
    left: 377px;
    top: 147px;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: 3px solid white;
    cursor: pointer;
    background-color: #333;

}
.hi-slide > ul > li > img{
    width: 100%;
    height: 100%;
    background-position: center;

}
