/* Square grid styles */
.squares-wrapper {
    display: flex;
    justify-content: center;
}

.squares-wrapper > .squares {
    width: 1000px;
}

.squares-wrapper > .squares > .square {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: -4px;                /*get the square block corner to corner*/
}

.square > .img-wrapper img {
    width: 100%;
    height: 650px;
    object-fit: cover;    /* Maintains the aspect ration of the image and crops it to fit in whaterever container it is in */
}

.square > .square-text-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 42px;
}

.square > .square-text-wrapper h1{
    color: #1e324a;
}