/* ================================== 
	Header
==================================== */

.header {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	z-index: 1;
}

.logo {
	width: 250px;
	margin: 25px;
	transition: all 0.3s ease-in-out;
}

.logo--shrinked {
	width: 80px;
	padding: 5px;
}

/* ================
	Cover Letter
================ */

.letter-container,
.cover-button-container {
	width: 700px;
}

.letter-container p+p {
	margin-top: 20px;
}

.cover-button-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.cover-header {
	height: 150px;
}

.flower-container {
	transform-style: preserve-3d;
    width: 100vw;
    height: 100vh;
	box-sizing: border-box;
	position: absolute;
}

.signature {
	width: 100px;
	margin: 20px 0px 0px 30px;
}


/* ================
	Splash
================ */

.wrapper-splash-flowers {
	--dim: 800px;
	height: var(--dim);
	width: var(--dim);
	position: absolute;
	top: calc(50% - var(--dim) / 2);
	left: calc(50% - var(--dim) / 2);
	background-size: 100%;
}

.peony0 {
	background-image: url("img/peony2.png");
	background-repeat: no-repeat;
	transform: translate3d(-575px, 175px, -100px);
	--dim: 35vw;
	z-index: -4;
}

.tulip1 {
	background-image: url("img/tulip1.png");
	background-repeat: no-repeat;
	transform: translate3d(465px, -235px, 100px);
	--dim: 45vw;
	z-index: -3;
}

.tulip2 {
	background-image: url("img/tulip4.jpg");
	background-repeat: no-repeat;
	transform: translate3d(550px, 500px, -100px);
	--dim: 33vw;
	z-index: 2;
}

.tulip3 {
	background-image: url("img/tulip2.png");
	background-repeat: no-repeat;
	transform: translate3d(-255px, 700px, 500px);
	--dim: 25vw;
	z-index: 4;
}

.flower1 {
	background-image: url("img/peony1.png");
	background-repeat: no-repeat;
	transform: translate3d(-650px, 1100px, -100px);
	--dim: 14vw;
	z-index: 10;
}

.flower2 {
    background-image: url("img/peony0.png");
    transform: translate3d(474px, 700px, 0px);
    --dim: 15vw;
}


/* ================
	Responsive
================ */

/* Standard mobile ----------- */
@media only screen and (max-width : 824px) {
	.flower-container {
        display: none;
    }
}

/* Largest screens ----------- */
@media only screen and (min-width : 1800px) {
	.peony0 {
		--dim: calc(1800px * 0.35);
	}

	.tulip1 {
		--dim: calc(1800px * 0.45);
	}

	.tulip2 {
		--dim: calc(1800px * 0.45);
	}
	
	.tulip3 {
		--dim: calc(1800px * 0.22);
	}

	.flower0 {
		--dim: calc(1800px * 0.20);
	}
	
	.flower1 {
		--dim: calc(1800px * 0.14);
	}
	
	.flower2 {
		--dim: calc(1800px * 0.14);
	}

}