body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.container {
	border: 1px solid black;
	width: 90%;
	height: 500px;
	padding: 20px;
}

.floated {
	float: left;
	width: 50%;
	height: 80%;
	margin: 0;
	background-color: DarkTurquoise;

	shape-outside: polygon(0 0, 100% 0, 39% 29%, 100% 75%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 39% 29%, 100% 75%, 0 100%);
	shape-margin: 10px;
	shape-image-threshold: 0.2;


}


/*
	shape-outside: circle(45% at 50% 50%);
	clip-path: circle(45% at 50% 50%);
	shape-margin: 10px;
 */


