p {
padding: 0;
margin: 0;
}
* {
box-sizing: border-box;
}

.container__items {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
height: 100vh;
}
.polaroid {
margin: 30px;
width: 400px;
height: 450px;
background-color: white;
padding: 1rem;
box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.2);
}
.polaroid__content-image {
height: 350px;
width: 100%;
overflow: hidden;
}
.polaroid__content-image > img {
height: 100%;
width: 100%;
display: block;
object-fit: cover;
}
.polaroid__content-caption {
display: flex;
justify-content: center;
align-items: center;
font-size: 25px;
}

/* movil */
.polaroid_movil {
margin: 2px;
width: 160px;
height: 160px;
background-color: #FFFFFF;
padding: 0.5rem;
box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.2);
}
.polaroid_movil__content-image {
height: 120px;
width: 100%;
overflow: hidden;
}
.polaroid_movil__content-image > img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
}
.polaroid_movil__content-caption {
display: flex;
justify-content: center;
align-items: center;
font-size: 1.2em;
}