h2 {
	font-family: 'Playfair Display', 'Times New Roman', Times, serif;
}

.template {
	/* overflow: hidden; */
	position: relative;
	background-color: #efefef;
	width: 100%;
	aspect-ratio: 16 / 25;

}

.template-image {
	padding: 1em;
	background-color: green;
	position: absolute;
	height: 100%;

}

.template-image img {
	width: 100%;
}

.template-button-wrapper {
	position: absolute;
	text-align: center;
	align-items: center;
	justify-content: center;
	display: flex;
	width: 100%;
	height: 100%;
	z-index: 10000;

}

.template-button {
	display: inline-block;
	opacity: 0;
}

.template:hover .template-button {
	opacity: 1;
}

.template-options {
	background-color: red;
}