body {
    background-color: white;
}

h1 {
    text-align: center;
    font-family: "Protest Guerrilla", sans-serif;
    font-size: 14svw;
    line-height: 11svw;
    text-transform: uppercase;
    background-image: url(../images/trespeople.jpg);
    background-size: 90%;
    background-position: 25% 50%;
    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%*/
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 20%;
    aspect-ratio: 1;
    border: 8px solid hotpink;
    rotate: -45deg;
    position: relative;
    overflow: hidden;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 3) ;

}

section.three_boxes div figure {
    background-image: url(../images/trespeople.jpg);
    background-size: 450%;
    width: 145%;
    aspect-ratio: 1;
    transform: rotate(45deg);
    position: absolute;
    top: -23%; left: -23%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
    
}

section.three_boxes div:nth-child(1) figure {
    background-position: 37% 50%;
       
}

section.three_boxes div:nth-child(2) figure {
    background-position: 56% 48%;
    
}

section.three_boxes div:nth-child(3) figure {
    background-position: 75% 50%;
    
}







