body {
    background-color: rgb(14, 191, 191);
}

h1 {
    text-align: center;
    font-family: 'Pirata One', Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14svw;
    line-height: 12svw;
    text-transform: uppercase;
    background-image: url(../images/threeanimals1.jpg);
    background-size: 35%;
    background-position: 50% 80%;
    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%;
    aspect-ratio: 1;
    border: 8px solid fuchsia;
    border-radius: 0%;
    transform: rotate(-45deg);
    position: relative;
    overflow: hidden;
    box-shadow: 4px 8px 14px green;
}


section.three_boxes div figure {
    background-image: url(../images/threeanimals1.jpg);
    background-size: 290%;
    width: 145%;
    aspect-ratio: 1;
    transform: rotate(45deg);
    position: absolute;
    top: -25%; left: -32%;

}


section.three_boxes div:nth-child(1) figure {
    background-position: 0% 50%;
}

section.three_boxes div:nth-child(2) figure {
    background-position: 49% 50%;
}

section.three_boxes div:nth-child(3) figure {
    background-position: 95% 50%;
}
