@font-face {
	font-family: "KPMG Bold";
	src: url("../fonts/KPMG-Bold.woff2") format("woff2");
}

@font-face {
	font-family: "Univers Bold";
	src: url("../fonts/UniversLTStd-Bold.woff2") format("woff2");
}

body {
	width: 640px;
	height: 480px;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing:antialiased;
}

a {
	text-decoration: none;
}

* {
	position: absolute;
}

#container {
	width: 640px;
	height: 480px;
	overflow: hidden;
	cursor: pointer;
	box-sizing: border-box;
  background-color: #1E49E2;
}

#logo, .headline, #cta {
	left: 27px;
	z-index: 3;
}

#logo {
	top: 36px;
}

.headline, #cta {
	text-align: left;
	font-weight: normal;
}

.headline {
	font-family: "KPMG Bold", sans-serif;
	font-size: 65px;
	line-height: 1.05em;
	color: #fff;
	letter-spacing: 0.02em;
}

#delayedText1, #delayedText2, #delayedText3 {
	position: absolute;
	opacity:0;
	transition: 0.8s;
}

#delayedText1 {
	top: 110px;
}

#delayedText2 {
	top: 170px;
}

#delayedText3 {
	top: 230px;
}

.slideUp {
	transform-origin: center top;
	transform: translateY(-10px);
}

h2#cta {
	margin: 0;
	padding: 0;
	bottom: 26px;
	font-family: "Univers Bold", sans-serif;
	font-size: 23px;
	line-height: 1.2em;
	letter-spacing: 0.02em;
	color: #EC6F91;
	opacity: 0;
	animation: fadeIn 0.75s ease-in-out 3s forwards;
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

img#bg {
	z-index: 0;
}

img#foreground {
	z-index: 2;
}

div#imgCrop {
	top: 77px;
	right: 45px;
	width: 225px;
	height: 327px;
	overflow: hidden;
}

img#foreground {
	top: -127px;
	right: -95px;
}

img#bg {
	top: -50px;
	left: -50px;
}

img#foreground, img#bg {
	transform-origin: center center;
	transform: scale(0.86);
	animation: imgScale 2s ease-in-out 0s forwards;
}

@keyframes imgScale {
	0% {
		transform: scale(0.86);		
	}
	100% {
		transform: scale(1);		
	}
}