.bands, .callers {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.one, .two {
    width: 35%;
    border: 3px dotted #7A1293;
    border-radius: 10px;
    padding: 1em;
    margin: 1em;
    background-color: #FFFECE;
}
.bandname, .callername {
    font-size: 1.5em;
    text-align: center;
}
.bandphoto img, .callerphoto img {
    max-width: 500px; 
    height: auto;
    width: 100%;
    text-align: center;
    margin: 10px auto;
    display: block;
}

@media only screen and (max-width: 1023px) {
    .one, .two {
        width: 70%;
    }
}