* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #ffe5be;
    background-image: linear-gradient(to right, rgb(189, 163, 133), rgb(141, 106, 64));
}

h1 {
    text-align: center;
    font-family: "Knewave",'arial black', verdana sans-serif;
    font-size: 14svw;
    line-height: 11svw;
    text-transform: uppercase;
    background-image: url(../images/three_people.jpg);
    background-size: 50%;
    background-position: 49% 50%;
    background-clip: text;
    color: transparent;
    padding-bottom: 5%;
}

section.three_boxes {
    margin: 50px auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

section.three_boxes div {
    flex: 0 0 20%;
    aspect-ratio: 1;
    flex-grow: 0;
    border:6px solid rgb(145, 99, 0);
    border-radius: 20%;
    rotate: 45deg;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 0px black;
    transition: box-shadow 400ms linear;
}

section.three_boxes div figure {
    background-image: url(../images/three_people.jpg);
    background-size: 280%;
    width: 145%; aspect-ratio: 1;
    rotate: -45deg;
    position: absolute;
    top: -23%; left: -23%;
    filter: blur(3px) grayscale(1);
    transition: filter 400ms;
}

section.three_boxes div:hover{
    box-shadow: 10px 0px 20px black;
    
}
section.three_boxes div:hover figure{
    filter: blur(0px) grayscale(0);
}


section.three_boxes div:nth-child(1) figure{
    background-position: 0% 56%;
}
section.three_boxes div:nth-child(2) figure{
    background-position: 49% 47%;
}
section.three_boxes div:nth-child(3) figure{
    background-position: 95% 51%;
}