@charset "utf-8";

@font-face {
	/* Visitor */
	font-family: "Visitor";
	src: url('../media/fonts/Visitor.woff') format('woff');
	font-weight: normal;
	font-size: normal;
}

@font-face {
	/* Ds */
	font-family: "Ds";
	src: url('../media/fonts/Ds.woff') format('woff');
	font-weight: normal;
	font-size: normal;
}

body {
	background: #000;
	background-image: url(../media/images/background.png);
	background-repeat: no-repeat;
	background-position: top;
	background-attachment: fixed;
	background-size: cover;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Visitor";
	margin: 0;
	padding: 0;
}

p {
	font-family: "Ds";
	margin: 0;
	padding: 0;
}

.container {
	width: 960px;
	height: 736px;
	margin: auto;
	border: #000;
	border-style: solid;
	border-width: thin;
}

.header {
	background-image: url(../media/images/header.png);
	background-repeat: no-repeat;
	height: 144px;
}

.logo {
	animation: logoAnim 2s ease-in-out infinite alternate;
	
}

@keyframes logoAnim {
	from { transform: rotate(0deg); }
	to { transform: rotate(-5deg); }
}

@keyframes navAnim {
	from { transform: scale(1, 1); }
	to { transform: scale(1.2, 1.2); }
}

nav {
	text-align: center;
}

nav ul {
	list-style-type: none;
	color: #FFF;
	padding: 0;
	margin: 0;
}
nav li {
	float: left;
}

li a {
	display: flex;
	color: #FFF;
	padding: 8px;
	display: block;
	text-align: center;
	text-decoration: none;
}

a:hover {
	animation: navAnim 0.25s ease-out;
	transform: scale(1.2, 1.2);
	text-decoration: underline;
}

.navbar {
	font-family: "Visitor";
	background: #000000;
	background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(50, 50, 50, 1) 100%);
	height: 36px;
}

#chatbox { }

main {
	background-color: #EEE;
	height: auto;
}

article {
	padding: 16px;
}