.blue{
	background-color: skyblue;
	width: 300px;
	height: 50px;
}
.red{
	background-color: red;
	width: 300px;
	height: 50px;
	justify-content: center;
	align-items: center;
	position: relative;
}

.circle1{
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 100px;
	position: relative;
	background-color: white;
	left: 100px;
	top: 5px;
	
}

.circle2{
	display: flex;
	width: 40px;
	height: 40px;
	border-radius: 100px;
	position: absolute;
	background-color: red;
	top: 1px;
	left: 10px;
}

.green{
	background-color: green;
	width: 300px;
	height: 50px;
}

.star{
	position: absolute;
	width: 40px;
	height: 40px;
	top: 5px;
	left: 140px;
}
.square1{
	width: 30px;
	height: 30px;
	position: absolute;
	background-color: white;
	top: 1px;
	left: 0px;
}
.square2{
	width: 30px;
	height: 30px;
	position: absolute;
	background-color: white;
	top: 1px;
	left: 0px;
	transform: rotate(45deg);
}

