body {
	background-color: black;
}

div.jumbotron {
	border-radius: 25px;
	margin-top:40px;
	background-image:linear-gradient(to right, rgba(0,0,0,.7), rgba(0,0,0,0)), url(../images/mtn2.jpg);
	background-repeat: space;
	background-size:100%;
	background-position: center center;
	padding-top:30px;
	padding-bottom:30px;
}

.jumbotron h1{
	text-align: left;
	font-size: 400%;
	font-family: sans-serif;
	font-weight:bold;
	color: rgba(255,255,255,0.8);
	text-shadow: 2px 8px 6px rgba(0,0,0,0.3),
               0px -5px 30px rgba(255,255,255,0.4);
}

.jumbotron h2, .jumbotron h3{
		font-size: 1.5em;
		color:rgba(255,255,255,0.8);
		text-shadow: 2px 8px 6px rgba(0,0,0,0.3),
               0px -5px 30px rgba(255,255,255,0.4);
		padding-left:2%;
	}

.navbar{
	position:fixed !important;
	top:0;
	left:0;
	right:0;
	z-index: 5;
}

main {
	padding: 15px;
	margin: 10px;
	margin-bottom: 30px;
	background: rgba(255, 255, 255, .6);
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

::selection{
  background-color:crimson;
}

.dropdown-menu a{
	color:white;
}

div.dropdown a{
	width:100%;
	font-size:2em;
}

div.dropdown-menu{
	width:100%;
	text-align:center;
}

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

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

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

}

.rolldown-list li:nth-child(2n) {
  background-color: #555;
	border: 2px solid red;
	border-radius: 12px;
}

.rolldown-list li:nth-child(2n+1) {
  background-color: #333;
	border: 2px solid coral;
	border-radius: 12px;
}


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

@font-face {
    font-family: 'redDead'; /*a name for the font*/
    src: url(CHINESER.TTF);
}

footer {
	color: rgba(255,255,255,0.3);
	text-align: center;
  /*background: linear-gradient( to bottom, rgba(150,0,0,.9),rgba(150,0,0,.4));*/
}

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

@media print {
	header, nav, aside, footer{
		display: none;
	}
	.jumbotron, h1, h2, h3 {
				color: black !important;
	}
  body{
    color:black;
    background-color:white;
  }
  main{
		background: none !important;
    border:1px solid gray;
		color: black !important;
		background-color: white !important;
  }
}