﻿@font-face {
    font-family: 'Nightcore Demo';
    font-style: normal;
    font-weight: normal;
    src: url('../css/Nightcore Demo.woff') format('woff');
}

html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

body {
	color: #b3b3b3;
	font-family: "Arial", Helvetica, Verdana, sans-serif;
	text-align: center;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7);
}

a:link { color: #c95dff; text-decoration: none; }

a:visited { color: #c95dff; text-decoration: none; }

a:active { color: #c95dff; text-decoration: none; }

a:hover{ color: #c95dff; text-decoration: none; }

.outer {
	display: table;
	position: absolute;
	height: 100%;
	width: 100%;
}

.middle {
	display: table-cell;
	vertical-align: middle;
}

.inner {
	margin-left: auto;
	margin-right: auto; 
	width: 100%;
	text-align: center;
}

#background-holder {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	background-image: url('../img/hellscape_bg.jpg');
	transform: translateX(-50%) translateY(-50%);
	background-size: cover;
	z-index: -100;
}

#image-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	box-shadow: 0 0 300px 50px rgba(0,0,0,0.9) inset;
	background-image: url("../img/sl.png");
}

#wrapper-cat {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}

#wrapper-cat-text-block {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

#cat-background {
    margin-left: auto;
    margin-right: auto;
	width: 768px;
	height: 768px;
	background-image: url("../img/heart.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position-y: -5em;
}

#wrapper-cat-text {
	color: #000;
	font-family: "Nightcore Demo";
	text-align: center;
	font-size: 3.5em;
	margin: 0;
	text-shadow: 3px 3px 0 #c95dff, -3px 3px 0 #c95dff, -3px -3px 0 #c95dff, 3px -3px 0 #c95dff;
	font-weight: bold;
	transform: rotate(-8deg);
}

.wings-ebin {
	font-family: "Nightcore Demo";
	font-size: 0.65em;
	padding: 0 0.05em;
}

#wrapper-cat-links {
	font-size: 2.5em;
	color: #c95dff;
}

#wrapper-cat-links i {
	font-size: 0.65em;
	padding: 0 0.05em;
}

#wrapper-cat-subtext {
	font-size: 0.67em;
	padding: 1.2em;
	color: #c95dff;
}

#top-cat {
	height: 512px;
	width: 512px;
	display: inline-block;
	position: relative;
	top: 4em;
	background-image: url("../img/cat.png");
	background-size: contain;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	animation: fucking cubic-bezier(.5,.1,.7,1) 15s;
	animation-iteration-count: infinite;
}

@keyframes fucking{
	0% {
		transform: perspective(1000px) rotateY(-5deg) rotateX(6deg);
	}
	25% {
		transform: perspective(1000px) rotateY(6deg) rotateX(-5deg);
	}
	50% {
		transform: perspective(1000px) rotateY(5deg) rotateX(6deg);
	}
	75% {
		transform: perspective(1000px) rotateY(-6deg) rotateX(-5deg);
	}
	100% {
		transform: perspective(1000px) rotateY(-5deg) rotateX(6deg);
	}
}