body, html{
	height: 100%;
}
.outer{
	//border: 1px solid red;
	height: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7d7e7d+0,0e0e0e+100;Black+3D */
background: #7d7e7d; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover,  #7d7e7d 0%, #0e0e0e 100%); /* FF3.6-15 */
background: -webkit-radial-gradient(center, ellipse cover,  #7d7e7d 0%,#0e0e0e 100%); /* Chrome10-25,Safari5.1-6 */
background: radial-gradient(ellipse at center,  #7d7e7d 0%,#0e0e0e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
z-index: 400;
}

.greyback{
	background: #7d7e7d; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover,  #7d7e7d 0%, #0e0e0e 100%); /* FF3.6-15 */
background: -webkit-radial-gradient(center, ellipse cover,  #7d7e7d 0%,#0e0e0e 100%); /* Chrome10-25,Safari5.1-6 */
background: radial-gradient(ellipse at center,  #7d7e7d 0%,#0e0e0e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
z-index: 400;
}

.blue-triangle{
	//border: 1px solid green;
	height: 400px;
	width: 400px;
	margin: auto auto;
	align-self: center;
display: flex;
	justify-content: center;
    //animation:spin 8s linear normal;
    background: url('/img/enter/blue_triangle.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.lines1{
	//border: 1px solid blue;
	height: 300px;
	width: 300px;
	margin: auto auto;
	align-self: center;
	display: flex;
	justify-content: center;
	animation: rspin 2s linear normal;
	background: url('/img/enter/outer_line_triangle.svg');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	top: 15px;
}

.lines2{
	//border: 1px solid magenta;
	height: 100px;
	width: 100px;
	margin: auto auto;
	align-self: center;
	animation: spin 1s linear normal;
	background: url('/img/enter/inner_line_triangle.svg');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	top: 55px;
	animation-iteration-count: 2;
}


@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
@keyframes rspin { 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); } }