@import url('main.css');

.polaroid-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.polaroid {
    display: grid;
    float: left;
    width: 150px;
    height: 200px;
    background-color: gray;
    padding: 5px;
    border-radius: 5px;
}

.polaroid img {
    max-width: 230px;
    max-height: 95px;
    width: auto;
    height: auto;
    justify-self: center;
    /* padding: 10px; */
    padding-top: 5px;
}

.polaroid p {
    display: grid;
    justify-content: center;
    align-items: center;
}

.polaroid-desc {
    background-color: white;
    border-radius: 5px;
    /* padding: 10px; */
    margin: 10px;
}