main{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
}

.content{
    flex: 1 1 100%;
    display: flex;
    align-self: center;
    flex-wrap: wrap;
}

.images-container{
    display: grid;
    flex: 1 0 50%;
}

.images-container img{
    width: 100%;
    height: 100%;
}

.about-us{
    align-self: center;
    flex: 1 0 50%;
    min-width: 40rem;
    padding: 4rem;
}

.about-us h2{
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-us p{
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.4;
}

@media (max-width: 985px){
    .images-container {
        flex: 1 0 60%;
    }
}