
#caja1 {
    display: flex;
    width: 330px;
    margin: 2em;
    background-color: white;
    color: black;
    box-shadow: 6px 6px 10px black;
    border-radius: 10px;
    height: 300px;
    flex-direction:row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
}

#caja1:hover {
    box-shadow: 6px 6px 10px orange;
}

img{
    width: 0px;
    flex-grow:1;
    object-fit: cover;
    opacity: .8;
    transition: .5s ease;
}

img:hover {
    cursor: crosshair;
    width: 300px;
    opacity: 1;
    filter: contrast(120%);
}

h1 {
    margin: 0;
    text-align: center;
    color: white;
    font-family: 'Anton', sans-serif;
    font-family: 'Bebas Neue', sans-serif;
    font-family: 'Dancing Script', cursive;
    font-family: 'Playfair Display', serif;
    background-color: #727272d1;
}

h2 {
    margin: 0;
    text-align: center;
    color: white;
    font-family: 'Anton', sans-serif;
    font-family: 'Bebas Neue', sans-serif;
    font-family: 'Dancing Script', cursive;
    font-family: 'Playfair Display', serif;
    background-color: #727272d1;
}

#CajaAux1 {
    width: 360px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
}

#caja2 {
    display: flex;
    width: 330px;
    margin: 2em;
    background-color: white;
    color: black;
    box-shadow: 6px 6px 10px black;
    border-radius: 10px;
    height: 300px;
    flex-direction:row;
    flex-wrap: wrap;
    justify-content: space-around;
    float: center;
    margin-left: auto;
    margin-right: auto;
}

#caja2:hover {
    box-shadow: 6px 6px 10px orange;
}

#CajaAux2 {
    width: 360px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
}

/****SLIDER****/

.container-slider {
    width: 100%;
    max-width: 400px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    width: 400%;
    height: 400px;
    /*margin-left: -100%*/
}

.slider__section {
    width: 100%;
}

.slider__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__btn {
    position: absolute;
    width: 54px;
    height: 54px;
    background: red;
    top: 50%;
    font-size: 40px;
    font-weight: bold;
    font-family: monospace;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.slider__btn:hover {
    background: blue;
}



.slider__btn-left {
        left: 10px;
}


.slider__btn-right {
        right: 10px;
}
