:root {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

.swipebox {
	display: contents;
}

.gallery-grid {
  grid-gap: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(1fr, 1fr));
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  align-items: stretch;
  justify-items: center;
  margin: 0;
  padding: 0;
}

.wide {
  grid-column: span 2;
  grid-row: span 1;	
}

.tall {
  grid-column: span 1;
  grid-row: span 2;
}

.large {
  grid-column: span 2;
  grid-row: span 2;
  padding-bottom: 10px;
  margin: auto;
  width: 100%;
}

.square {
  grid-column: span 1;
  grid-row: span 1;
}

.footer {
	width: 100%;
	height: 40px;
}

.footerText {	
	line-height: 40px;
	font-size: 70%;
	vertical-align: middle;
	text-align: center;
	font-family: Helvetica;
}

.hvLink {
	text-decoration: none;
	color: #edd066;
}