html,body {
    margin: 0;
    font-family: Raleway;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(25deg,#4e4e55,#fff9fc);
    text-shadow: 0px 1px 2px rgba(0,0,0,0.4);
    animation: fadein 1s;
    /*transition:all 0.3s ease;*/
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.wrapper {
	position: absolute;
	left: 50%;
	z-index: 5;
	width: 100%;
	height: 100%;
}

.wrapped {
	position: relative; 
	left: -50%;
	width:100%;
	top: 50%;
    transform: translateY(-50%);
}


/* cnahge theme of credits template */
li {
    text-align:left;
}

li > a {
    color:white;
}

@keyframes flickerAnimation {
  0%   { opacity:0; }
  80%  { opacity:0; }
  90% { opacity:0.5; }
  100% { opacity:0; }
}

.animate-flicker {
    animation: flickerAnimation 5s; /* infinite;*/
	animation-iteration-count: 2;
}