.categories, .category, .menu ul, .scroll-to-top.show{
	display: flex;
}
.images {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
	gap: 10px;
}
.images iframe {
	height: 480px;
	width: 100%;
	border-radius: 5px;
}
.images img {
	max-width: 99%;
	border-radius: 5px;
}
.menu ul, body {
	margin: 0;
	padding: 0;
}
.category, .menu {
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}
body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
}
.scroll-to-top, .go-to-index, header {
	background-color: #999999;
	color: #333;
}
header {
	padding: 20px;
	text-align: center;
}
header h1 {
	margin: 0;
	font-size: 2.5em;
}
.menu {
	padding: 10px;
	position: sticky;
	top: 0;
	z-index: 1000;
}
.menu ul {
	list-style: none;
	justify-content: center;
	flex-wrap: wrap;
}
.menu ul li {
	margin: 5px 10px;
}
.menu ul li a img {
	width: 30px;
	height: 30px;
}
.categories {
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 20px;
	flex-direction: row;
}
.category {
	width: 99%;
	margin: 10px;
	padding: 10px;
	border-radius: 5px;
	flex-direction: column;
	align-items: center;
}
.category h2 {
	font-size: 1.5em;
	margin: 10px 0 20px;
	text-align: center;
}
.go-to-index {
	position: fixed;
	bottom: 20px;
	left: 20px;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 1.5em;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
	display: flex;
}
.scroll-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 1.5em;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}
img {
	-webkit-filter: grayscale(66%);
	filter: grayscale(66%);
}
a {
	text-decoration: none !important;
	color: black;
}
.material-symbols-outlined {
	font-variation-settings:
		'FILL' 0,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24;
	font-size: 36px;
	color: #333;
}

a:visited,a:hover,a:active{color:gray}
.capriola-regular {font-family: "Capriola", sans-serif;font-style: normal;}
.photography {
	display: block;
	margin: auto;
	max-width: 80%;
	max-height: 720px;
	text-align: center;
}
@media (max-width: 1079px) {
	.hiddenOnCell {
		display: none;
		background-color: #999;
	}	
	.images {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(80%, 1fr));
		gap: 10px;
	}
	.images iframe {
		height: 480px;
		width: 100%;
		border-radius: 5px;
	}
	.images img {
		max-width: 360px;
		border-radius: 5px;
	}
}