 body {
    background-color: #EEE;
}

h1 {
    text-align: center;
    font-family: 'Tuffy', 'arial black', verdana, sans-serif;
    font-size: 14svw;
    line-height: 8svw;
    text-transform: uppercase;
    background-image: url(../images/three_people.jpg);
    background-size: 60%;
    background-position: 50% 30%;
    background-clip: text;
    color: transparent;
}

section.three_boxes {
    margin: 150px auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;

}

section.three_boxes div {
    flex: 0 0 20%;
    aspect-ratio: 1;
    border: 8px solid pink;
    border-radius: 0%;
    rotate: -45deg;
    position: relative;
    overflow: hidden;
}

section.three_boxes div:nth-child(1) figure {
    background-position: 5% 30%;
    
}
section.three_boxes div:nth-child(2) figure {
    background-position: 50% 30%;
}

section.three_boxes div:nth-child(3) figure {
    background-position: 97% 30%;
}

section.three_boxes div figure {
    background-image: url(../images/three_people.jpg);
    background-size: 300%;
    width: 100%; height: 100%;
    aspect-ratio: 1;
    transform: rotate(45deg);
    position: absolute;
    top: -20%; left: -10%;
}