.page-frame {
	max-width:1200px;
	margin:auto;
	padding: 8px;
}

@font-face {
	font-family: "Orbitron";
	src: url("font/Orbitron Medium.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Orbitron";
	src: url("font/Orbitron Light.otf") format("opentype");
	font-weight: lighter;
	font-style: normal;
}

@font-face {
	font-family: "Orbitron";
	src: url("font/Orbitron Bold.otf") format("opentype");
	font-weight: bold;
	font-style: normal;
}

body {
	font-family: "Orbitron";
	font-weight: lighter;
	margin: 0;
	padding: 0;
	background-color: #c7acc6;
	background-image: url("images/bi_body_background.jpg");
	background-attachment:fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

h1 {
	font-weight: bold;
	font-size: 40px;
	text-align: center;
	margin:0;
	margin-bottom:32px;
	margin-top:8px;
}
h2 {
	font-weight: bold;
	font-size: 28px;
	text-align: center;
	margin-bottom:8px;
}
h3 {
	font-weight: normal;
	font-size: 20px;
	text-align: center;
}
h4 {
	font-weight: normal;
	font-size: 16px;
	text-align: center;
}
p { 
	font-weight: normal;
	font-size: 16px;
	margin:0;
}

hr {
	display: block;
	height: 1px;
	width: 50%;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 2em auto;
	padding: 0;
}

a:link    { color: #1c2843d0; }
a:visited { color: #1c2843d0; }
a:hover   { color: #1c284380; }
a:active  { color: #1c284340; }

.inline-block {
  display: inline-block;
}

.video-container {
	text-align: center;
}
.center {
	max-width: 100%;
	object-fit: scale-down;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#header {
	top: 0px;
	background-color: #eeeeee55;
	text-align: center;
	padding-bottom: 1px;
	margin: 0px;
}

.header-frame {
	max-width:1200px;
	margin:auto;
	overflow: hidden;
}

#header .header-list-left {
	padding-left: 8px;
	text-align: center;
	float:left;
}
#header .header-list-right {
	padding-left: 0px;
	text-align: center;
	float:right;
}
#header .header-list-item {
	display:inline;
	padding-right: 8px;
}

#footer {
	position:fixed;
	bottom:0px;
	width: 100%;
	background-color: #eeeeee55;
	text-align: center;
}
#footer p {
	font-weight: lighter;
	font-size: 11px;
	margin:0;
	padding-bottom:2px;
	padding-top:2px;
}

.wishlist-items {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	text-align:center;
}
.border-div {
	border: 2px solid #1c2843d0;
	border-radius: 60px;
}
.border-div:hover {
	border: 2px solid #1c284380;
	border-radius: 60px;
}

.bordered-img {
	max-width: 100%;
	vertical-align: middle;
	padding:8px;
}

.imgbox {
	display: block;
	height: 100%;
}
.center-fit {
	max-width: 100%;
	max-height: 100vh;
	margin: auto;
	filter: drop-shadow(2px 2px 2px #00000088);
}

/* Hide ace and piezo if the screen is too small */
@media screen and (max-width: 900px) { 
	#left-page-image { display: none; }
	#pzo-right-page { display: none; }
	#pzo-right-page-projector { display: none; }
}

/* ace is on the bottom-left of the screen */
#left-page-image {
	position:relative;
}
#left-page-image img{
	position:fixed;
	bottom: 0px;
	left: 0px;
	z-index:-1;
	filter: drop-shadow(2px 2px #00000033);
	max-width: 100%;
	height: auto;
}

/* pzo is animated floating on the right of the screen */
@keyframes pzo-hover {
	from {bottom: 130px;}
	to {bottom: 150px;}
}

#pzo-right-page {
	position:relative;
}
#pzo-right-page img{
	position:fixed;
	bottom: 130px;
	right: 0px;
	z-index:-1;
	animation-name: pzo-hover;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
	filter: drop-shadow(2px 2px #00000033);
	max-width: 100%;
	height: auto;
}

/* pzo projector is on the bottom-right of the screen */
#pzo-right-page-projector {
	position:relative;
}

#pzo-right-page-projector img{
	position:fixed;
	bottom: -40px;
	right: 0px;
	z-index:-2;
	filter: drop-shadow(2px 2px #00000033);
	max-width: 100%;
	height: auto;
}