body {
	background-color: black;
}

.row {
	display: flex;
	flex-wrap: wrap;
	padding: 0 0px;
	justify-content: space-around;
}

.row .image {
	height: 35vh;
	position: relative;
	margin-top: 5vh;
}

.image img {
	display: block;
	height: 100%;
}

.imgOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	color: #ffffff;
	opacity: 0;
	display: none;
	transition: opacity 0.3s;
}

.imgOverlayText {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.image:hover .imgOverlay {
	opacity: 1;
	display: block;
}

.imgTitle {
	font-size: 2rem;
	font-weight: bold;
	margin-top: 0.2rem;
}

.imgDesc {
	font-size: 1.25rem;
	margin-top: 0.2rem;
	padding-left: 1rem;
	padding-right: 1rem;
	text-align: center;
}

.links {
	height: 100%;
	display: flex;
	align-items: flex-end;
	flex-direction: row;
	justify-content: space-between;
	z-index: 100;
}

.contentLink {
	display: block;
	padding: 0.5rem;
	font-size: 1.1rem;
	text-decoration: underline;
	font-weight: lighter;
	color: white;
	z-index: 101;
}

.contentButton {
	height: 100%;
	width: 100%;
}

/* Dropdown Button */
.dropbtn {
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 110;
	color: white;
	padding: 16px;
	font-size: 16px;
	border: none;
	cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
	width: 35px;
	height: 5px;
	background-color: #fff;
	margin: 6px 0;
	transition: 0.4s;
}

.change .bar1 {
	-webkit-transform: rotate(-45deg) translate(-9px, 6px);
	transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
	opacity: 0;
}

.change .bar3 {
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
}

/* Dropdown button on hover & focus */
.dropbtn:hover {
	background-color: #222;
}

/* The search field */
#myInput {
	box-sizing: border-box;
	background-position: 14px 12px;
	background-repeat: no-repeat;
	font-size: 2rem;
	padding: 14px 20px 12px 45px;
	border: none;
	text-decoration: underline;
}

/* The search field when it gets focus/clicked on */
#myInput:focus {
	outline: none;
	border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-height: 100%;
	/* height: 100%; */
	background-color: rgba(0, 0, 0, 0.6);
	min-width: 230px;
	z-index: 1;
	overflow: auto;
}

/* Links inside the dropdown */
.dropdown-content a,
.dropdown-content input {
	color: white;
	background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	padding: 12px 16px;
	text-decoration: none;
	font-size: 2rem;
	display: block;
	text-align: center;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	font-weight: bold;
	background-color: rgba(0, 0, 0, 1);
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
	display: block;
}
