*{
	box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
}

body{
	font-family: sans-serif;
	font-size: 18pt;
	line-height: 1.6;
	text-align: center;
	overflow-x: scroll;
	overflow-y: scroll;
	padding: 0px;
	margin: 0px;
	background: #fdfaf6;
}

a{
	text-decoration: none;
	color: #ddd;
	user-select: none;
}

a:hover{
	color: white;
}

.Container{
	height: 75vh;
}

.UpperBar{
	color: #ddd;
	background: #1d7ec7;
}

.UpperBar .Company{
	display: inline-block;
	font-weight: bold;
	vertical-align: top;
	float: left;
	padding-left: 8px;
	padding-right: 8px;
}

.UpperBar .Close{
	vertical-align: top;
	float: right;
	padding-left: 8px;
	padding-right: 8px;
}

.UpperBar .Title{
	text-align: center;
	vertical-align: top;
	color: #333;
	letter-spacing: 2px;
	background: white;
	padding: 4px;
}

img{
	vertical-align: middle;
	width: auto;
	height: 100%;
	margin-top: 16px;
	margin-bottom: 16px;
	border-radius: 16px;
	box-shadow: 10px 5px 5px #aaa;
}

.Buttons{
	padding-bottom: 8px;
	user-select: none;
	background: white;
	opacity: 0.8;
}

.PNB{
	margin: 8px;
	color: #333;
	background: white;
	padding-left: 24px;
	padding-right: 24px;
	padding-bottom: 4px;
	border: 2px solid #ccc;
	border-radius: 8px;
	display: inline-block;
}

.PNB:active{
	transform: scale(0.98);
}

@media all and (max-width: 1040px){
	img{
		width: 90%;
		height: auto;
	}
}

