* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    background-color: #7d7979;
}

h1 {
    text-align: center;
    font-family: 'Emblema One', verdana, sans-serif;
    font-size: 21svw;
    margin-top: 50px;
    line-height: 14svw;
    text-transform: uppercase;
    background-image: url(../images/three_people.jpg);
    background-size: 250%;
    background-position: 74% 69%;
    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%;
    border-radius: 0%;
    aspect-ratio: 1;
    border: 8px solid rebeccapurple;
    transform: rotate(-45deg);
    position: relative;
    overflow: hidden;
    
}

section.three_boxes div figure {
    background-image: url(../images/three_people.jpg);
    width: 160%; 
    aspect-ratio: 1;
    transform: rotate(45deg);
    position: absolute;
    top: -37%; left: -30%;

}

section.three_boxes div:nth-child(1) figure {
    background-position: 56% 66%;
    background-size: 850%;
    filter:hue-rotate(80deg)
}

section.three_boxes div:nth-child(2) figure {
    background-position: 64.5% 65%;
    background-size: 950%;
    filter: contrast(175%);
}

section.three_boxes div:nth-child(3) figure {
    background-position: 80% 69%;
    background-size: 800%;
    filter: sepia(120%);
}
