* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}
body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100vw;
}
.pistil {
	position: absolute;
	width: 100px;
	height: 100px;
	background-color: yellow;
	border-radius: 50px;
}
.petal:nth-child(1) {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	top: 100px;
	background-color: purple;
}
.petal:nth-child(2) {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	right: 100px;
	bottom: 100px;
	background-color: purple;
}

.petal:nth-child(3) {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	bottom: 200px;
	left: 100px;
	background-color: purple;
}
.petal:nth-child(4) {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	bottom: 400px;
	background-color: purple;
}
.petal2:nth-child(1) {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	top: 100px;
	background-color: lavender;
}
.petal2:nth-child(2) {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	right: 100px;
	bottom: 100px;
	background-color: lavender;
}

.petal2:nth-child(3) {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	bottom: 200px;
	left: 100px;
	background-color: lavender;
}
.petal2:nth-child(4) {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	bottom: 400px;
	background-color: lavender;
}
.petalrotate {
	position: absolute;
	rotate: 45deg;
	top: -45px;
	right: 105px;
}
button {
	position: absolute;
	top: 50px;
	padding: 10px;
	color: white;
	background: #000;
}
#flower {
	opacity: 1;
}
.s1 {
	width: 25%;
}
.s2 {
	width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.colors_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	background: black;
	width: 150px;
	height: 35px;
	padding: 10px;
	margin: 10px;
}
.colors {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}
.triangle {
	margin-top: 50px;
	width: 0px;
	height: 0px;
	border-top: 80px solid transparent;
	border-bottom: 150px solid black;
	border-right: 150px solid transparent;
	border-left: 150px solid transparent;
}
