* {
    box-sizing: border-box;
}
body {
    font-family: "Verdana", cursive;
    
}
.container {
    width: 100%;
}
.container__items {
}
.polaroid {
    margin: 75px;
    
}
.polaroid__content-image {
    width: 100%;
    overflow: hidden;
	background-color: #eeeeee;
    padding: 1rem;
    box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.2);
}
.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;
}
