@charset "UTF-8";
/* CSS Document */
body{
	background-color: black;
}
@font-face {
    font-family: 'youmurderer_bbregular';
    src: url('youmurdererbb_reg-webfont.woff2') format('woff2'),
         url('youmurdererbb_reg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	/*	font-family:"youmurderer_bbregular"; */
}
@font-face {
    font-family: 'blood_crowregular';
    src: url('bloodcrow-webfont.woff2') format('woff2'),
         url('bloodcrow-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	/*	font-family:"blood_crowregular";	*/

}
@font-face {
    font-family: 'bloodlustregular';
    src: url('bloodlust-webfont.woff2') format('woff2'),
         url('bloodlust-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	/*	font-family:"bloodlustregular";	*/
}
.background{
	width: 1000px;
	height:640px;
	position:relative;
}
.setup{
	font-family:"blood_crowregular";
	color:white;
	text-align: center;
	font-size: 200%;
	top: 50px;
	position: absolute;
}
.next{
	text-decoration: none;
	color:red;
	text-align: center;
	font-size: 400%;
	top: 450px;
	left: 375px;
	position: absolute;
	font-family:"bloodlustregular";
}
.image{
	background-image: url("camera.png");
	height: 300px;
	width: 300px;
	position: absolute;
	left: 650px;
	top:170px;
	opacity:0;
	animation: fadeIn 4s;
	animation-delay: 6s;
	animation-fill-mode:forwards;
}
@-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}