* {
	box-sizing: border-box;
}
html {
	height: 100%;
}
body {
	width: 100%;
	height: 100%;
	margin: 0;
	background-color: #607B8B;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.background {
	position: fixed;
	top: 0;
	left: 0;
	image-rendering: pixelated;
}
#bar {
	width: 100%;
	height: 0;
	background-color: rgba(255, 255, 255, .6);
}
#container {
	position: relative;
	width: min(calc(100% - 200px), 750px);
	min-height: 100%;
	padding: 120px 0;
	margin: 0 auto;
}
#container:has(#photos) {
	width: min(calc(100% - 200px), 1250px);
}
@media (max-width: 768px) {
	#container {
		width: calc(100% - 20px) !important;
		padding-top: 20px;
	}
}
#content {
	padding: 20px 30px;
	background-color: rgba(255, 255, 255, .6);
	border-radius: 10px;
	margin: 0 auto;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
}
.city {
	white-space: nowrap;
}
#amsterdam {
	width: 5px;
	height: 17px;
	margin-left: 2px;
	margin-bottom: -2px;
}
#ps {
	font-size: smaller;
}
#photos {
	text-align: center;
}
#photos a {
	display: block;
	margin-bottom: 80px;
	color: black;
	font-weight: bold;
	font-size: large;
	text-decoration-color: black;
}
#photos a:has(p) {
	margin-bottom: 40px;
}
#photos a:last-child {
	margin-bottom: 150px;
}
#photos img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100vh;
	border-radius: 10px;
}
#photos iframe {
	margin-bottom: 80px !important;
	border-radius: 10px;
}
#silhouette {
	position: absolute;
	bottom: 0;
	width: 100px;
	height: 100px;
	background-image: url(silhouette.png);
	background-size: 100px 100px;
	margin: 0 30px;
}
#background-controls {
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 20px;
	display: grid;
	grid-template-columns: 1fr 2px 1fr;
	gap: 2px;
	justify-items: center;
	font-variant-numeric: tabular-nums;
}
#background-controls * {
	cursor: default;
}
#background-controls button {
	background: none;
	border: none;
}
