body {
	background-color: black;
}

.jumbotron {
	border-radius: 25px;
	background-color: #666666;
	height:200px;
	width: device-width;
	margin:0px;
	padding:0px;
}

div.jumbotron h1{
	text-align: center;
	font-size: 400%;
	font-family: sans-serif;
	font-weight:bold;
	color: rgba(,0,0,0.8);
	text-shadow: 2px 8px 6px rgba(0,0,0,0.3),
               0px -5px 35px rgba(255,255,255,0.8);
	position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.h3{
	position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: green;
  border: 2px solid #4CAF50;
}

main {
	padding: 0px 0 15px 0;
	margin: 10px;
	margin-bottom: 30px;
	background-color: white;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

div.year{
	list-style: none;
	display: inline-block;
	margin: 0px 0px 0px 0px;
  align-self: center;

	
}

ul li.season{
	color: red;
	float:left;
	display:inline-block;
	margin: 0px, 10px, 100px, 0px;
  width: 45%;
	padding-bottom: 20px;
}

.rolldown-list {
  text-align: left;
  padding: 0;
  margin: 0;
	
}

.rolldown-list li {
	font-family: sans-serif;
  padding: 20px;
  margin-bottom: .125em;
	padding-right:100px;
  display: block;
	color: white;
  list-style: none;
  text-transform: uppercase;
	height: 80px;
	margin-right: 10px;
}

.rolldown-list li {
  visibility: visible;
  animation: rolldown 2s 1;
  transform-origin: 300px 0px 0px;
  animation-fill-mode: forwards;
}

.rolldown-list li:nth-child(2n) {
  background-color: #555;
}

.rolldown-list li:nth-child(2n+1) {
  background-color: #333;
}




@keyframes rolldown {
  0% {
    visibility: hidden;
    transform: rotateX(180deg) perspective(800px);
		color: black;
  }
  70% {
    visibility: visible;
    transform: rotateX(-20deg);
  }
  100% {
    visibility: visible;
    transform: rotateX(0deg);
  }
}

footer {
	color: rgba(255,255,255,0.3);
	text-align: center;
}

footer li, footer ul {
	padding: 0;
	margin: 0;
}
footer li {
	margin: 0px 10px;
	list-style: none;
	display: inline;
	
}

@media print {
	nav {
		display: none;
	}
}