html, body {
	background-color: white;
}
body{ 
	position: relative;
    display: flex;
    height: 100vh; 
    width: 100vw;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}
.paper-holder {
    aspect-ratio: 12 /16;
    max-height: 100vh;
    max-width: 100vw;
}
.paper{
	position: relative;
	background-color: #32C2D8;
	margin: 10px;
    height: calc(100% - 20px);
    overflow: hidden;
    box-shadow: 0px 2px 38px rgba(0, 0, 0, 0.2);
}	
.star {
	position: absolute;
	width: 7em;
    transform-origin: top center;
    animation-name: star;
  	animation-duration: 2s;
  	animation-iteration-count: infinite;
  	animation-direction: alternate;
  	animation-timing-function: ease-in-out;
	z-index: 99;
}

.background-1 {
	position: absolute;
    left: 0;
    top: 0;
	height: 81em;
	z-index: 1;
}
.background-2 {
	position: absolute;
    right: 0;
    bottom: 0;
    height: 94em;
	z-index: 1;
}

@keyframes star {
  from {
  	transform: rotate(-8deg);
  }
  to {
  	transform: rotate(8deg);
  }
}

.cloud {
	position: absolute;
	z-index: 2;
}

.cloud-1{
	right: 0;
	top: 30%;
	height: 15em;
 	animation-name: cloud;
  	animation-duration: 2s;
  	animation-iteration-count: infinite;
  	animation-direction: alternate-reverse;
  	animation-timing-function: ease-in-out;
}

.cloud-2{
	left: 0;
    top: 18%;
    height: 11em;
    animation-name: cloud;
  	animation-duration: 2s;
  	animation-iteration-count: infinite;
  	animation-direction: alternate;
  	animation-timing-function: ease-in-out;
}

.cloud-3{
	right: 0;
    top: 62%;
    height: 11em;
    animation-name: cloud;
  	animation-duration: 3s;
  	animation-iteration-count: infinite;
  	animation-direction: alternate-reverse;
  	animation-timing-function: ease-in-out;
}


.cloud-4{
	left: 0;
    top: 59%;
    height: 11em;
    animation-name: cloud;
  	animation-duration: 3s;
  	animation-iteration-count: infinite;
  	animation-direction: alternate;
  	animation-timing-function: ease-in-out;
}



@keyframes cloud {
	from {
		transform: translateY(-10%);
	}
	to {
		transform: translateY(12%);
	}
}

.guest-holder {
    position: absolute;
    /* text-transform: uppercase; */
    top: 21%;
	width: 100%;
    text-align: center;
	color: #3B435D;
	font-size: 7em;
}

#guest{
	padding: 0 30px;
}

.elephant {
	position: absolute;
    height: 53em;
    top: 40%;
    left: 50%;
/*    transform: translate(-50%, -40%);*/
    animation-name: elephant;
  	animation-duration: 3s;
  	animation-iteration-count: infinite;
  	animation-direction: alternate;
  	animation-timing-function: ease-in-out;
	z-index: 5;
}

@keyframes elephant {
	from {
		-ms-transform: translate(-50%, -35%);
		-webkit-transform: translate(-50%, -35%);
		-moz-transform: translate(-50%, -35%);
		-o-transform: translate(-50%, -35%);
		transform:  translate(-50%, -35%);
	}
	to {
		-ms-transform: translate(-50%, -45%);
		-webkit-transform: translate(-50%, -45%);
		-moz-transform: translate(-50%, -45%);
		-o-transform: translate(-50%, -45%);
		transform:  translate(-50%, -45%);
	}
}

.baloo {
	font-family: 'Baloo 2', cursive;	
}
.montserrat {
	font-family: 'Montserrat', sans-serif;
}


.content { 
	position: absolute;
    z-index: 1;
    top: 66%;
    width: 100%;
    height: 34%;
    text-align: center;
 }

.baby-shower{
	display: inline-block;
	text-shadow: -1px -2px #3b435d;
}

.baby-shower::before {
	content: '';
	background-image: url('images/star-left.svg');
    height: .75em;
    width: .75em;
	
    position: absolute;
    background-repeat: no-repeat;
    transform: translateX(-110%);
}

.baby-shower::after {
	content: '';
	background-image: url('images/star-right.svg');
    height: .75em;
    width: .75em;
    position: absolute;
    background-repeat: no-repeat;
    transform: translateX(10%);
}

@media (max-width: 720px) {
	.paper {
		font-size: 1.4vw;
		margin: 0px;
    	height: 100%;
	}
}

@media (min-width: 721px) {
	.paper {
		font-size: 7px;
	}
}

.ballon{
	position: absolute;
	z-index: 10;
	height: 15em;
	animation-name: ballon;
  	animation-duration: 10s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

@keyframes ballon {
	from {
		top: 100%;
	}
	to {
		top: -15%;
	}
}
