/*
 * Animation
 */
@keyframes rocket-frames {
    from {
	color: white;
    }
    to {
	color: orange;
	transform: translate(100px, -497px) rotate(20deg) scale(0.5);
    }
}

@keyframes arrow-frames {
    from {
	transform: translate(-175px,-200px) rotate(-90deg);
    }
    to {
	transform: translate(-215px, -240px) rotate(-90deg);
    }
}

.rocket {
	animation-delay: 3s;
	animation-timing-function: cubic-bezier(.68,-0.06,.98,.58);
	animation-name: rocket-frames;
	animation-duration: 4s;
	animation-fill-mode: forwards;
}

.animate {
	animation-play-state: paused;
}

.pyramid-arrow {
	transform: translate(-175px,-200px) rotate(-90deg);
	animation-delay: 3s;
	animation-timing-function: linear; 
	animation-name: arrow-frames;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

/*
 * Custom styles
 */
.outline-text {
	text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.contrast-bg {
	background: rgba(34,34,34,0.75);
}
.story-card {
	padding: 37px 55px 27px;
	position: relative;
	border: 1px solid #B5B5B5;
	background: white;
	background: -webkit-linear-gradient(top, #DFE8EC 0%, #fdfd96 8%) 0 57px;
	background: -moz-linear-gradient(top, #DFE8EC 0%, #fdfd96 8%) 0 57px;
	background: linear-gradient(top, #DFE8EC 0%, #fdfd96 8%) 0 57px;
	-webkit-background-size: 100% 30px;
	-moz-background-size: 100% 30px;
	-ms-background-size: 100% 30px;
	background-size: 100% 30px;
	width: 70%;
	display: inline-block;
	text-align: left;
	color: black;
}

div.story-card {
	padding-left: 50px;
}

.story-card::after {content:'';
	position:absolute;
	width:0px;
	top:0;
	left:39px;
	bottom:0;
	border-left:1px solid #F8D3D3;
}

.story-card p, .story-card h2, .story-card ul, .story-card div {
	color: black;
}

#career-table {
	transform: scale(.6);
	position: absolute;
	top: 0;
}

#career-table tr {
	height: 25%;
}

#career-table td {
	width: 45%;
	vertical-align: middle;
}

#career-table img {
	background: white;
	padding: 10px;
}

img#green-arrow {
	border:0px;
	margin:0px;
	background-color:transparent;
	width: 42px;
	height: 42px;
	box-shadow: none;
}

html.blur .backgrounds {
  -webkit-filter: blur(5px);
 -moz-filter: blur(10px);
 -o-filter: blur(5px);
 -ms-filter: blur(5px);
 filter: blur(5px);
}

#plaid-title-img {
    max-width: 1200px;
    max-height: 1200px;
    border: 0px;
    box-shadow: none;
    z-index: -1;
}

.crawler-results img {
    width: 50%;
    float: left;
}
