body{
    background: #747877;
}

.titutlo_galeria {
    color: green;
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 10px 5px rgba(255,255,255,0.9);
    margin: 10px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.galeria__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 200px;
}


.galeria{
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.galeria__item{
    width: 80%;
    cursor: pointer;
    list-style: none;
    
    border: 2px solid rgba(0,0,0,0.1);
    box-shadow: 0 0 5px 1px;
    border-radius: 10px;
}
.galeria__item:hover{
    transform: scale(105%);
    transition: all 0.5s;
}

.galeria__item .nombre {
    text-align: center;
    color: white;
}

@media (min-width:480px) {
    .galeria__item {
        width: 48%;
        margin: 5px;
    }
}

@media (min-width:768px) {
    .galeria__item {
        width: 33%;
    }
}

@media (min-width:1024px) {
    .galeria__item {
        width: 20%;
    }
}

.modal {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    
    top: 0;
    left: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
}

.modal__img {
    width: 80%;
    max-width: 800px;
}

@media (min-width:768px){
    .modal__img {
        height: 90%;    
    }
}

.modal__boton {
    width: 50px;
    height: 50px;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    font-family: monospace;
    line-height: 50px;
    text-align: center;
    background: red;
    border-radius: 50%;
    cursor: pointer;
    
    position: absolute;
    right: 10px;
    top: 10px;
}