.target {
	background: gold;
	display: inline-grid;
	place-content: center;
	width: 120px;
	height: 120px;
}

.bullet {
	position: fixed;
	background-color: red;
	z-index: 2;
}

.bullet[data-overlap=true] {
	background-color: green;
}

#firstBullet {
	top: 0;
	left: 0;
}

#secondBullet {
	top: 0;
	right: 0;
}

#thirdBullet {
	bottom: 0;
	left: 0;
}

#fourthBullet {
	bottom: 0;
	right: 0;
}

.install-outer {
	width: 100%;
	display: grid;
	place-content: center;
	position: fixed;
	z-index: 1;
	bottom: 0;
}

.install {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 8px;
	background-color: #000;
	color: #FEFEFE;
	border-radius: 8px 8px 0 0;
}

.install p {
	margin: 0;
	padding: 0;
}

.install code {
	background-color: #FEFEFE;
	color: #000;
	padding: 4px;
	border-radius: 4px;
}

.install .flex-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
