html {
	scroll-behavior: smooth;
}
body {
	background-color: black;
	background-image: url('assets/bg/stars2.gif');
	background-repeat: repeat;
	background-attachment: fixed;
	background-position: left;
	text-align: center;
	color: white;
	font-family: 'tahoma', sans-serif;
}
a:link {color: gold;}
a:visited {color: gold;}
a:hover {color: white;}
a:active {color: red;}
p {
	width: 750px;
	font-size: 18px;
	color: silver;
	text-align:left;
	margin: auto;
	overflow: hidden;
}
h1 {
	font-size: 3rem;
}
h2 {
	color: silver;
}
h3 {
	color: silver;
	text-align: center;
}
hr {
	width: 700px;
	height: 5px;
	border: none;
	color: #E3C200;
	background-color: #E3C200;
}
.table1 {
	border-collapse: collapse;
	width: 95%;
	margin: auto;
}
.table1 th, .table1 td {
	color: silver;
	border: 1px;
	border-style: solid;
	border-color: silver;
	text-align: left;
	padding: 8px;
}
.table2 {
	border-collapse: collapse;
	width: 95%;
	margin: auto;
}
.table2 th, .table2 td {
	color: silver;
	border: 0px;
	border-style: solid;
	border-color: silver;
	text-align: center;
	padding: 8px;
}
.container {
	width: 800px;
	margin: auto;
	overflow: hidden;
	padding-top: 20px;
	padding-bottom: 20px;
	border-radius: 30px;
	background-color: rgba(169, 169, 169, 0.1);
}
.column {
	width: 360px;
	float: left;
	font-size: 18px;
	color: silver;
	text-align:left;
	margin-left: 25px;
	box-sizing: border-box;
}
.column2 {
	width: 250px;
	float: left;
	font-size: 18px;
	color: silver;
	text-align: left;
	margin-left: 10px;
	box-sizing: border-box;
}
.img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.nav {
	padding-right: 5px;
	padding-left: 5px;
	width: auto;
	height: 32px;
}
#logobox {
    align-items: center;
    height: 500px;
}
.glow {
    animation-name: glow;
    animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
@keyframes glow{
    0%{filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.9))}
    50%{filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9))}
    100%{filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.9))}
}
.wglow {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.9));
}
.yglow {
    filter: drop-shadow(0 0 5px rgba(227, 194, 0, 1));
}
.hglow {
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1));
	transition: filter 0.5s;
	transform: scale(1.0);
}
.hglow:hover {
	animation-name: hoverglow;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
}
@keyframes hoverglow{
	0%{transform: scale(1.0)}
	100%{transform: scale(1.1)}
}
@view-transition {
	navigation: auto;
}
::view-transition-group(content) {
	animation-duration: 1s;
	animation-timing-function: ease;
}
::view-transition-old(content) {
	animation-name: slide-out;
}
@keyframes slide-out {
	to {translate: -100vw;}
}
::view-transition-new(content) {
	animation-name: slide-in;
}
@keyframes slide-in {
	from {translate: 100vw;}
}
main {
	view-transition-name: content;
}