	.rotate {
		 width: fit-content;
		 height: fit-content;
		 display: inline-block;
		 position: absolute;
	}
	.rotate:hover img, .rotate:focus img {
		 transform: rotate(3deg);
	}
	.rotate:hover .text, a:focus .text {
		 opacity: 1;
	}
	
		.text {
		 opacity: 0;
		 position: absolute;
		 top: 50%;
		 left: 50%;
		 transform: translate(-50%, -50%);
		 font-size: calc(1em + 1.75vw);
		 color: #FFF;
		 filter: drop-shadow(1px 1px 0 black)
			drop-shadow(-1px 1px 0 black) 
			drop-shadow(1px -1px 0 black) 
			drop-shadow(-1px -1px 0 black);
		 text-transform: uppercase;
		 z-index: 99;
	}