body {
    color: cornsilk;
    background-color: black;
}

.about-cortland {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 35vh;
    text-align: center;
    text-justify: center;
}

.grid-item {
    width: 100%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    min-height: 50%;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .3);
}

/* Switch to vertical display for phones */
@media only screen and (max-width: 860px) {
    .grid-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        padding: 5%;
    }
}