* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #333;
}
/* photo layout */
.photo-title {
    padding: 1vh;
    text-align: center;
    background-color: whitesmoke;
    font-size: 2em;
    font-weight: bold;
}

.photo-text {
    padding-top: .5vh;
    padding-left: 1.5vh;
}

.photo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1vw;
    width: 100%;
    margin: 3vh auto;
}

.photo-grid img {
    width: 49%;
    max-height: 39.5vh;
    object-fit: cover;
}

/* text layout section */ 

.text-container {
    position: relative;
    column-count: 2;
    column-gap: 5vw;
    max-width: 90vw;
    margin: 0 auto;
    padding-left: 10vw;
}

.pull-quote {
    position: relative;
    left: -10vw;
    top: -1vh;
    width: 50vw;
    font-size: 16pt;
    font-style: italic;
    color: darkblue;
    border-left: 4px solid darkblue;
    padding-left: 1vw;
    line-height: 1.4;
}

.text-title {
    font-size: 24pt;
    color: blue;
    margin-bottom: 1vh;
    text-align: left;
    padding-left: 15vw;
}

.subtitle {
    font-size: 20pt;
    color: darkblue;
    margin-bottom: 4vh;
    font-weight: 500;
    padding-left: 15vw;
}

.p-style {
    font-size: 16pt;
    margin-bottom: 2vh;
}
