h1 {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.0;
	color: black;
	text-align: center;
	font-size: 48px;
}

p {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.0;
	color: black;
	text-align: center;
	font-size: 24px;
}

body {
  height: 75vh;
  display: flex;
  justify-content: column;
  align-items: center;
}

body .gallery_view {
  display: grid;
  grid-template-columns: repeat(6, 100px);		/* was repeat(6,100px) */
  grid-auto-rows: 100px;          				/* was 100px */
  margin: 0 auto;								/* was 0 auto */
  gap: 5px;										/* was 5px */
  margin-top: -50px;							/* was -50px */
}

body .gallery_view .gallery_photo {
  width: 200px;
  height: 200px;
  grid-column: auto/span 2;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: all 500ms ease;
}

body .gallery_view .gallery_photo:nth-child(4) {      /* was 4 */
  grid-column-start: 2;
}

body .gallery_view .gallery_photo:hover {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  z-index: 9999;
}

body .gallery_view .gallery_photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

				/* = = = = = = GALLERY VIEW 2 = = = = = = = = */

body .gallery_view2 {
  display: grid;
  grid-template-columns: repeat(6, 100px);		/* was repeat(6,100px) */
  grid-auto-rows: 100px;          				/* was 100px */
  margin: 0 auto;								/* was 0 auto */
  gap: 5px;										/* was 5px */
  margin-top: -50px;							/* was -50px */
}

body .gallery_view2 .gallery_photo2 {
  width: 200px;
  height: 200px;
  grid-column: auto/span 2;						/* was auto/span 2 */
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: all 500ms ease;
}

body .gallery_view2 .gallery_photo2:nth-child(4) {      /* was 4 */
  grid-column-start: 2;									/* was 2 */
}

body .gallery_view2 .gallery_photo2:hover {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  z-index: 9999;
}

body .gallery_view2 .gallery_photo2 img {
  width: 100%;
  display: block;
  object-fit: cover;
}