*{
    padding: 0; margin: 0; box-sizing: border-box;
}

body {
    background-image: url(/cis195/images/bricks.jpg);
    background-size: cover;
}

h1 {
    text-align: center;
    font-family: 'plaster' ,'arial black', verdana, sans-serif;
    font-size: 14svw;
    line-height: 10svw; 
    text-transform: uppercase;
    background-image: url(/cis195/images/3teens.jpg);
    background-size: 70%;
    background-position: 50% 40%;
    background-clip: text;
    color: transparent;
    
}

section.three_people {
    margin: 150px auto;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    
}

section.three_people div {
    border: 4px solid rgb(92, 90, 90);
    flex: 0 0 25%; /* This equals a flex-grow: 0;, flex-shrink: 0;, and a flex-basis: 20%;*/
    aspect-ratio: 1/1;
    rotate: -45deg;
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px rgb(150, 149, 149, .6);
    border-radius: 20px 20px 20px 20px;
    }

    section.three_people div figure {
        background-image: url(/cis195/images/3teens.jpg);
        background-size: 280%;
        width: 145%;
        aspect-ratio: 1;
        transform: rotate(45deg);
        position: absolute;
        top: -23%; left: -23%;
        filter:grayscale(60%);
    }

    section.three_people div:nth-child(1) figure {
       background-position: 1% 30%;
    }

    section.three_people div:nth-child(2) figure {
        background-position: 45% 30%;
        /* flex-grow: 2; This would make the 2nd div grow twice the rate of the others. */
    }

    section.three_people div:nth-child(3) figure {
        background-position: 95% 35%; 
    }

   
