body {
    background-color: #efecb4;
}

h1 {
    text-align: center;
    font-family: "Notable", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 19svw;
    font-size: 19svw;
    text-transform: uppercase;
    background-image: url(../images/3-people.jpg);
    background-size: cover;
    background-position: 50% 40%;
    background-clip: text;
    color: transparent;
}

section.three_boxes {
    margin: 200px auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

section.three_boxes div {
    flex: 0 0 20%; /*flex-shrink, flex-grow, flex-basis*/
    aspect-ratio: 1;
    border: 6px solid rgb(123, 50, 73);
    rotate: -45deg;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

section.three_boxes div figure {
    background-image: url(../images/3-people.jpg);
    background-size: 450%;
    width: 100%; height: 100%;
    aspect-ratio: 1;
    rotate: 45deg;
    position: absolute;
    top: -50%; left: -45%;
    width: 400px;
    height: 400px;
}

section.three_boxes div:nth-child(1) figure {
    background-position: 25% 31%;
}

section.three_boxes div:nth-child(2) figure {
    background-position: 46% 30%;
}

section.three_boxes div:nth-child(3) figure {
    background-position: 68% 29%;
}

