/* CSS for image gallery and side-by-side divs */

.container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.parent {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    float: left;
    width: 48%; 
  /*  width: 500px;  */
}

.child-image {
    display: inline-block;
    padding: 1rem 1rem;
    margin-top: 5vh;
    vertical-align: middle;
    width: 40%;
    text-align: center;
}
.child-image p {
    margin-top: 0.5rem;
    text-align: left;
}

.child-desc {
    display: inline-block;
    /*    padding-left: .5rem;  */
    padding: 1rem 1rem;
    margin-top: 5vh;
    vertical-align: top;
    max-width: 48%;
}

dl {
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.dl-horizontal {
    display: inline-block;
}
.dl-horizontal dd {
    text-align: left;
    margin-left: 5rem;
}

.dl-horizontal dt {
    float: left;
    width: 4rem;
    font-weight: 700;
    clear: left;
    text-align: right;
    overflow: hidden;
}

.dl-wide dt {
    width: 7rem;
}

.dl-wide dd {
    margin-left: 7.5rem;
}

.child-image>a>img {
    width: 100%;
}

.bordered {
    border: 2px solid white;
    border-radius: 5px;
}

.nobullets {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.work-desc {
    line-height: 120%;
    font-size: 80%;
}

.force-single-column {
    width: 51%;
}
/* Small devices (portrait tablets and large phones, 600px and down) 
@media only screen and (max-width: 600px) {...}*/

/* Medium devices (landscape tablets, 768px and down) */
@media only screen and (max-width: 1100px) {

	.parent {
		width: unset;
        text-align: center;
	}
    .child-image {
        width: unset;        
    }
    .child-desc {
        max-width: unset;
        margin-top: unset;
    }
}
/* Medium-wide devices (1150px and down) */
@media only screen and (max-width: 1150px) {

    .parent {
        text-align: center;
    }
    .child-desc {
        max-width: unset;
        margin-top: unset;
    }
}