@font-face {
	font-family: VeniceClassic;
	src: url(font/VeniceClassic.ttf);
}

body {
	background-image: url("img/bg1.gif");
	background-repeat: repeat;
	background-color: black;
	font-family: VeniceClassic;
	font-size: large;
}

.container {
	width: 1200px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-gap: 5px;
	grid-template: "header header" "main sidebar" "footer footer" / 1000px 1fr;
}

.welcome{
	text-align: center;
	border: 3px;
	border-style: dotted;
	width: 400px;
	margin: 20px auto 20px auto;
}

.maincontent{
	margin-top: 20px;
	margin-left: 20px;
	margin-right: auto;
}

header {
	grid-area: header;
	background-color: rgb(160, 160, 116);
	border: 1px;
	border-style: solid;
	border-color: rgb(202, 219, 101);
	border-radius: 10px;
	align-items: center;
	text-align: center;
}

main {
	grid-area: main;
	background-color: rgb(92, 78, 95);
	border: 1px;
	border-style: solid;
	border-color: rgb(157, 97, 165);
	border-radius: 10px;
	height: 600px;
	
}

aside {
	grid-area: sidebar;
	background-color: rgb(92, 78, 95);
	border: 1px;
	border-style: solid;
	border-color: rgb(157, 97, 165);
	border-radius: 10px;
}

aside ul {
	list-style-type: square;
	font-size: large;
}

aside a:hover {
	color: rgb(157, 97, 165);
	background-color: rgb(160, 160, 116);
}

footer {
	grid-area: footer;
	background-color: rgb(92, 78, 95);
	border: 1px;
	border-style: solid;
	border-color: rgb(157, 97, 165);
	border-radius: 10px;
	width: 500px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.punchy {
	position: fixed;
	bottom: 10px;
	right: 10px;
	height: 10%;
	width: auto;
}

.sidebartitle{
	background-color: rgb(160, 160, 116);
	border: 1px;
	border-style: solid;
	border-color: rgb(202, 219, 101);
	border-radius: 10px 10px 0px 0px;
	height: 30px;
	text-align: center;
	font-size: x-large;
}

a {
	color: rgb(160, 160, 116);
}