/* Reset Rule */
*{
    margin: 0; padding: 0; box-sizing: border-box;
}

body{
    background-color: white;
}

h1{
    margin-top: 20px;
    text-align: center;
    font-family: "BBH Sans Bartle", verdana, sans-serif;
    font-size: 12svw;
    line-height: 9vw;
    text-transform: uppercase;
    background-image: url(../images/camels.jpg);
    background-size: 95%;
    background-position: 25% 50%; /* Left and right, up and down */
    background-clip: text;
    color: transparent;
}

.three_boxes {
    display: flex;
    margin: 150px auto;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

section.three_boxes div {
   flex: 0 0 25%;
   aspect-ratio: 1;
   border: 4px solid gold; 
   border-radius: 0%;
   transform: rotate(-45deg);
   position: relative;
   overflow: hidden;
}

section.three_boxes figure{
    background-image: url(../images/camels.jpg);
    background-size: 200%;
    width: 145%;
    aspect-ratio: 1;
    position: absolute;
    top: -23%; left: -23%;
    transform: rotate(45deg);
}

section.three_boxes div:nth-child(1) figure{
    background-position: 5% 45%; /* Horizontal Vertical */
    background-size: 350%;
}

section.three_boxes div:nth-child(2) figure{
    background-position: 44% 47%; /* Horizontal Vertical */
    background-size: 400%;
    transition: .25s linear;
}

section.three_boxes div:nth-child(2):hover{
    border: 8px solid rgb(172, 172, 233);
}

section.three_boxes div:nth-child(3) figure{
    background-position: 71% 50%; /* Horizontal Vertical */
    background-size: 400%;
}