body {
  background-color: white;
	color: black;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
	font-size: 13pt;
}

nav {
	float: left;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	height: 150%;
	width: 180px;
	background-color: #608f6a;
	padding: 20px;
	border-right: ridge green 5px;
}

nav a {
	background: blue;
	color: white;
	padding: 13px;
	border-radius: 90px;
	line-height: 4;
}

nav a.button {
	background: none;
	line-height: 6;
}

nav li.badges {
	list-style: none;
	line-height: 3;
}

nav li.badges img {
	width: 100px;
}

main {
	background-image: url("images/bgwindy.jpg");
	background-repeat: repeat;
	margin-left: 225px;
	min-height: 1400px;
}

main p { font-size: 16pt;}

h1 {
	margin: auto;
	text-align: center;
	text-decoration: underline;
}

h1.title {
	text-decoration: none;
	border: ridge #c6c6c6 10px;
	margin-top: 20px;
	width: 90%;
}

h1#welcome {
	font-weight: 500;
	grid-column: 2 / span 2;
}

#header {
	margin: auto;
	max-width: 50%;
	text-align: center;
	display: grid;
	grid-template-columns: repeat(4, minmax(50px, 1fr));
	justify-items: center;
	border: ridge #c6c6c6 10px;
	padding: 15px;
	margin-top: 20px;
}

.marquee {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	animation: scroll 10s linear infinite;
	font-size: 30px;
	font-weight: 800;
	text-shadow: #62dd3f 5px -5px 5px;
}

@keyframes scroll {
  0% {
    left: 80%;
  }
  50% {
    left: -80%;
  }
	100% {
		left: 80%;
	}
}

.main-img {
	margin: auto;
	width: 30%;
	text-align: center;
	padding: 20px;
}

@keyframes spin-img {
from { transform: rotateY(0deg) }
to { transform: rotateY(360deg) }
}

.spin-img { animation: spin-img 5s ease-in-out infinite; }

@keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}

table {
	margin: auto;
	margin-top: 50px;
	background-color: #ecebeb;
}

table, td {
	border: solid black 1px;
}

table img {
	width: 400px;
	padding: 10px;
}

.nsfw {
  filter: blur(10px);
}