.contest-entries-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-evenly;
}
.contest-entry {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.feat-img {
	margin: auto;
}
.contest-entry img {
	max-width: 300px;
}
.fa-house-user {
	font-size: 100px;
}
.gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 20px;
}
.gallery-image {
	text-align: center;
}
.gallery-image img {
	max-width: 300px;
	cursor: pointer;
}
.image-caption {
	font-style: italic;
	text-align: center;
}
.creator-text {
	width: 85%;
	font-style: italic;
	margin: auto;
}
.creator-commentary {
	margin: 10px 0 30px 0;
}
.info-inset {
	width: 70% !important;
	margin-top: 10px;
}
#fullpage {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: contain;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.6);
}

/* VOTING */
.question {
	padding: 10px 0;
	margin-top: 10px;
}
.radioChoice {
	position: relative;
	width: fit-content;
}
.radioSlider {
	height: 2px;
	width: 79%;
	position: absolute;
	top: 12px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
	.radioGrid {
		display: grid;
		grid-template-rows: repeat(2,auto);
	}
	.selectCont {
		position: relative;
	}
	.radioCont {
		margin: 0 auto;
		width: 25px;
		height: 25px;
	}
		.selectCont input {
		position: absolute;
		opacity: 0;
		cursor: pointer;
		width: 25px;
		height: 25px;
		z-index: 5;
	}
	.clicker {
		position: absolute;
		top: 0;
		left: 0;
		height: 25px;
		width: 25px;
		background-color: #eee;
	}
	.radio-button {
		border-radius: 50%;
	}
	.selectCont:hover input ~ .clicker {
		background-color: #ccc;
	}
	.selectCont input:checked ~ .clicker {
		background-color: green;
	}
	.clicker:after {
		content: "";
		position: absolute;
		display: none;
	}
	.selectCont input:checked ~ .clicker:after {
		display: block;
	}
	.selectCont .radio-button:after {
		position: absolute;
		display: none;
		top: 9px;
		left: 9px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: white;
	}