* {
	box-sizing: border-box;
}

body {
    background-color: antiquewhite;
	background-image: url("../assets/background.bmp");
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    height: 100vh;
}

h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    color:#ffffff;
    background-color: #2222225b;
    border: 2px solid #222;
    border-radius: 25px;
    width: 85%;
}

main {
    width: 356px;
}

.textContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
	position: relative;
	width: 200px;
	height: 400px;
	margin: 0 auto;
    bottom: -95px;
    left: 0px;    
}

.tulip {
	width: 10px;
	height: 400px;
	margin: 30px 100px;
	float: left;
}

.leftBabyTulip {
	transform: scale(0.5);
	left: -105px;
	top: 74px;
}
.leftBabyTulip .rightStemLeaf {
	top: 105px;
	transform: rotate(-32deg);
	left: -15px;
}
.leftBabyTulip leftStemLeaf {
	transform: scale(0.7) rotate(90deg);
	left: -54px;
}

.rightBabyTulip {
	transform: scale(0.7);
	left: 90px;
	top: 42px;
}
.rightBabyTulip .tulipHead {
	transform: rotate(23deg);
	left: -80px;
}
.rightBabyTulip .leftStemLeaf {
	visibility: hidden;
}
.rightBabyTulip .rightStemLeaf {
	top: 70px;
	transform: rotate(-32deg);
	left: -15px;
}

.tulip,
.stem,
.stemLeaf,
.tulipHead,
.tulipLeaf,
.tulipHair,
.tulipEyes,
.tulipSmile,
.tulipBlush {
	position: absolute;
}

.stem {
	height: 200px;
	width: 10px;
	border-radius: 50px;
	background-color: #25af59;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: 0;
}

.stemLeaf {
	background-color: #139a3e;
	width: 60px;
	height: 60px;
}

.leaf {
	border-radius: 90% 0 90% 0;
}

.rightStemLeaf {
	top: 60%;
	width: 100px;
	transform: rotate(-10deg);
	left: -1px;
}

.leftStemLeaf {
	top: 20%;
	width: 80px;
	transform: rotate(90deg);
	left: -63px;
	z-index: -2;
}

@keyframes head {
	0% {
		transform: rotate(-11deg);
	}
	50% {
		transform: rotate(20deg);
	}
	100% {
		transform: rotate(-11deg);
	}
}
.tulipHead {
	top: -159px;
	left: -102px;
	background-color: #f5e642;
	width: 200px;
	height: 165px;
	border-radius: 0 0 50% 50%;
	z-index: 0;
	transform: rotate(-11deg);
	border: 1px solid #d4b81c;
	animation-name: head;
	animation-duration: 1.75s;
	animation-iteration-count: infinite;
	animation-direction: alternate-reverse;
	animation-timing-function: ease;
}

.tulipLeaf {
	background-color: #d4b81c;
	width: 40px;
	height: 40px;
	z-index: -1;
}

.rightTulipLeaf {
	transform: rotate(90deg);
	left: 4px;
}

.leftTulipLeaf {
	left: -33px;
}

.tulipHair {
	width: 0;
	height: 0;
	top: -60px;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-bottom: 60px solid #ad981c;
}

.lightTulip {
	border-bottom: 60px solid #f5e642;
}

.darkTulip {
	border-bottom: 60px solid #ad981c;
	border-bottom: 32px solid #f1d845;
	top: -32px;
	z-index: -1;
}

.darkTulip-1 {
	left: 30px;
}

.darkTulip-2 {
	left: 110.7px;
}

.lightTulip-1 {
	transform: rotate(-27deg);
	top: -43px;
	left: -17px;
}

.lightTulip-2 {
	left: 70px;
}

.lightTulip-3 {
	transform: rotate(27deg);
	top: -43px;
	left: 156px;
}

.tulipEyes {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #222;
	top: 55px;
}

.leftEye {
	left: 69px;
}

.rightEye {
	left: 119px;
}

.tulipSmile {
	width: 37px;
	height: 18.5px;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border: 5px solid #222;
	transform: rotate(180deg);
	top: 73px;
	left: 81px;
	border-bottom: 0;
}

.tulipBlush {
	border-radius: 50%;
	background-color: #c48e19;
	width: 30px;
	height: 30px;
}

.leftBlush {
	top: 66px;
	left: 44px;
}

.rightBlush {
	top: 66px;
	left: 123px;
}
