* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	background-image: linear-gradient(to bottom, #373 0%, #ada 100%);
	min-height: 100vh;
}

h1 {
	text-align: center;
	font-family: "Fugaz One", verdana, sans-serif;
	font-size: 14svw;
	line-height: 10svw;
	text-transform: uppercase;
	margin-top: 50px;
	background-image: url(../images/3dogs.jpg);
	background-size: 60%;
	background-position: 45% 40%;
	background-clip: text;
	color: transparent;
}
.three-boxes {
	margin: 150px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
}
.three-boxes div {
	flex: 0 0 20%;
	aspect-ratio: 1;
	border: 2px solid black;
	border-radius: 10%;
	rotate: -45deg;
	position: relative;
	overflow: hidden;
	min-width: 300px;
	max-width: 500px;
}

.three-boxes div figure {
	background-image: url(../images/3dogs.jpg);
	background-size: 300%;
	width: 145%;
	aspect-ratio: 1;
	transform: rotate(45deg);
	position: absolute;
	top: -23%; left: -23%;
	filter: grayscale(100%);
	transition: filter 0.4s ease;
}
.three-boxes div:hover figure {
	filter: grayscale(0%);
}
.three-boxes div:nth-of-type(1) figure {
	background-position: 16% 50%;
}
.three-boxes div:nth-of-type(2) figure {
	background-position: 58% 30%;
}
.three-boxes div:nth-of-type(3) figure {
	background-position: 91% 58%;
}