@import url('https://fonts.googleapis.com/css?family=Indie+Flower');
@import url('https://fonts.googleapis.com/css?family=Amatic+SC');

body {
	font-family: 'Sitka Small', cursive !important;
	background: #fff8c8;
	margin: 0px;
	padding: 0px;
}

::selection {
	background: transparent;
}

h4 {
	font-size: 18px;
	line-height: 1px;
	font-family: 'Source Serif Pro Black', 'Amatic SC', cursive !important;
}

.color1 {
	color: #feda52;
	text-shadow: 2px 2px 3px black;
	text-align: center;
}
.color2 {
	color: #C0392B;
}

.card {
	color: #614e2a;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 600px;
	background: #e0e1dc;
	transform-style: preserve-3d;
	transform: translate(-50%, -50%) perspective(2000px);
	box-shadow: inset 300px 0 50px rgba(0,0,0,.5), 20px 0 60px rgba(0,0,0,.5);
	transition: 1s;
}

.card:hover {
	transform: translate(-50%, -50%) perspective(2000px) rotate(15deg) scale(1.2);
	box-shadow: inset 20px 0 50px rgba(0,0,0,.5), 0 10px 100px rgba(0,0,0,.5);
}

.card:before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	width: 100%;
	height: 5px;
	background: #BAC1BA;
	transform-origin: bottom;
	transform: skewX(-45deg);
}

.card:after {
	content: '';
	position: absolute;
	top: 0;
	right: -5px;
	width: 5px;
	height: 100%;
	background: #92A29C;
	transform-origin: left;
	transform: skewY(-45deg);
}

.card .imgBox {
	width: 100%;
	height: 100%;
	position: relative;
	transform-origin: left;
	transition: .7s;
}

.card .bark {
	position: absolute;
	background: #e0e1dc;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: .7s;
}

.card .imgBox img {
	width: 100%;
	height: auto;
}

.card:hover .imgBox {
	transform: rotateY(-135deg);
}

.card:hover .bark {
	opacity: 1;
	transition: .6s;
	box-shadow: 300px 200px 100px rgba(0, 0, 0, .4) inset;
}

.card .details {
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	padding: 0 20px;
	z-index: -1;
	overflow-y: auto;
	height: 100%;
	cursor: url('./favicon.png'), auto;
}

.card .details p {
	font-size: 15px;
	line-height: 1;
}

.card .details h4 {
	text-align: center;
}

.text-right {
	text-align: right;
	margin-right: 10px;
}
