/* Pile polaroid photos */
.section-container {
    max-width: 960px;
}

.section-row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.text-center-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.text-content-column {
    margin-left: 10%;
    margin-right: 10%;
}

.polaroid {
    position: relative;
    padding: 10px;
    /*transform: rotate(-3deg);*/
}

.polaroid img {
    max-width: 80%;
    min-width: 50%;
    display: block;
    border-radius: 10px;
}

.polaroid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*border: 1px solid #333;*/
    z-index: -1;
}