* {
    margin: 0; padding: 0; box-sizing: border-box;
}
body {
    background-color: rgba(255, 166, 0, 0.842);
    font-family: "cal sans", "Playwrite AU SA", cursive;
}
h1 {
    text-align: center;
    font-size: 18svw;
    line-height: 14svw;
    text-transform: uppercase;
    background-image: url(/cis195/images/Monkeys.jpg);
    background-size: 60%;
    background-position: 50% 75%;
    background-clip: text;
    color: transparent;
}
section.three_boxes {
    margin: 150px auto;
    display: flex;
    justify-content: space-evenly;
    flex-flow: row wrap;
}
section.three_boxes div {
    flex: 0 0 20%;
    aspect-ratio: 1;
    border: 4px solid blue;
    border-radius: 0;
    transform: rotate(45deg);
    position: relative;
    overflow: hidden;
}
section.three_boxes div figure {
    background-image: url(/cis195/images/Monkeys.jpg);
    background-size: 200%;
    width: 190%;
    height: 180%;
    aspect-ratio: 1;
    rotate: -45deg;
    position: absolute;
    top: -60%; left: -30%
}
section.three_boxes div:nth-child(1) figure {
    background-position: 8% 70%;
}
section.three_boxes div:nth-child(2) figure {
    background-position: 66% 70%;
}
section.three_boxes div:nth-child(3) figure {
    background-position: 121% 70%;
}