* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    background-color: #808080;
    max-width: 90vw;
    margin: 0 auto;
}

header {
    background-color: #ffffff;
    height: 10vh;
    position: relative;
    margin-top: 10px;
}

header h1 {
    position: absolute;
    bottom: 0;
    padding: 7px 50px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: hsl(273, 95%, 26%);
    font-size: 4vw;
}

.text {
    background-color: #ffffff;
    text-align: left;
    display: flex;
    padding-top: 5px;
    padding-bottom: 10px;
    color: hsl(0, 1%, 34%)
}

.text article {
   max-width: 70vw;
   padding: 0 20px 0 50px;
   bottom: 10px;
   line-height: 1.5;
   font-size: 1.7vw;
   flex: 1 0 auto;
   font-family:Arial, Helvetica, sans-serif;
}

.image {
    /* background-image: url(../images/articleportrait.jpg);
    background-size: cover;
    background-position: center; */
    /* min-height: 15vh; min-width: 15vw; */
    /* max-height: fit-content;
    max-width: fit-content; */
    max-width: 20vw;
    margin-right: 10px;
    flex: 1 0 auto;
    display: flex;
}

.image img {
    flex: 0 0 auto;
    max-height: 80%;
    max-width: 80%;
    padding-right: 5px;
    /* max-height: max-content; */
}

.photos {
    background-color: #ffffff;
    display: flex;
    gap: 2vw;
    max-width: 100vw;
    margin: 0 auto; 
    flex-flow: row wrap;
    margin-bottom: 10px;
}

.photos div {
    background-color: #ffffff;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    flex: 1 0 45%;
}

.photo1 {
    background-image: url(../images/business1.jpg);
}

.photo2 {
    background-image: url(../images/business2.jpg);
}

.photo3 {
    background-image: url(../images/business3.jpg);
}

.photo4 {
    background-image: url(../images/business4.jpg);
}



