@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: 300px;
	height: 600px;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing:antialiased;
}

a {
	text-decoration: none;
}

* {
	position: absolute;
}

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

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

#logo {
	top: 22px;
}

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

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

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

#delayedText1 {
	top: 405px;
}

#delayedText2 {
	top: 440px;
}

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

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

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

img#bg {
	z-index: 0;
}

img#foreground {
	z-index: 2;
}

div#imgCrop {
	top: 84px;
	left: 36px;
	width: 228px;
	height: 312px;
	overflow: hidden;
}

img#foreground {
	top: -134px;
	left: -86px;
}

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);		
	}
}