/* Styles */
.layout {
	display: grid;
	grid-gap: 0.5rem;
	grid-template-columns: 20% 60% 20%;
	grid-template-rows: 20% 60% 20%;
	grid-template-areas:
		"image"
	;
	height: 100%;
  width: 100%;
}

.image {
  grid-area: image;
	grid-row: 2;
	grid-column: 2;
}

img {
	width: 100%;
	max-height: 100%;
}

.hidden {
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	margin-top: -999px
}
