* {
	box-sizing: border-box;
}

p {
	font-size: 125%;
}

body,html {
	margin: 0;
	padding: 0
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #f0f0f0;
	min-height: 100vh;
}

.dark-mode {
	background-color: #454545;
	color: white;
}

.main-element {
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 700px;
	/* width: 700px; */
	height: 600px;
}

.dark-mode .main-element {
	background-color: #606060;
	color: white;
}

.dropdown {
	position: relative;
	padding-bottom: 5px;
	display: inline-block;
}
.dropdown-button {
	padding: 10px 20px;
	background-color: white;
	color: black;
	border: none;
	cursor: pointer;
	font-size: 16px;
}
.dark-mode .dropdown-button {
	background-color: #606060;
	color: white;
}
.dropdown-button-active {
	background-color: #03fceb;
}
.dark-mode .dropdown-button-active {
	background-color: #03fceb;
	color: black;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
.dropdown-content button {
	padding: 10px 20px;
	border: none;
	background-color: transparent;
	cursor: pointer;
	text-align: left;
	width: 100%;
}
.dark-mode button {
	background-color: #606060;
	color: white;
}
.dropdown-content button:hover {
	background-color: #f1f1f1;
}
.dark-mode .dropdown-content button:hover {
	background-color: #f1f1f1;
	color: black;
}
.dropdown:hover .dropdown-content {
	display: block;
}


.gallery-container {
	display: flex;
	align-items: center;
	position: relative;
}
.images {
	display: flex;
	max-width: 600px;
	/* width: 600px; */
	height: 600px;
}
.gallery-image {
	overflow: hidden;
	transition: 0.3s linear;
	opacity: 0;
	height: 0;
	position: absolute;
}
.gallery-image:target {
	opacity: 1;
	display: block;
	flex-direction: row;
	height: auto;
	position: relative;
}
.gallery-image img, video {
	max-width: 100%;
	border: 2px solid #ddd;
	border-radius: 5px;
}
#openfl-content {
	width: 600;
	height: 338;
}
.nav-button {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 10px;
	cursor: pointer;
	font-size: 24px;
	text-decoration: none;
	color: black;

	margin-bottom: 350px;
}
.nav-button:hover {
	background-color: #e0e0e0;
}

footer {
	width: 60px;
	height: 60px;
	min-height: 60px;
	display: inline-flex;
	justify-content: center;
}

footer img {
	width: 60px;
	height: 60px;
	margin: 10px 5px 0px;
}

#githubImg {
	display: none;
}