@import url(
'https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

.container {
	background-image: 
		linear-gradient(90deg, #9331d4, rgb(239 5 92 / 70%));
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.piano-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.piano-keys-list {
	list-style: none;
	display: flex;
	justify-content: center;
}

.piano-keys {
	width: 8rem;
	cursor: pointer;
	position: relative;
	height: 20rem;
	border-radius: 10px;
	border: 1px solid #000;
}

.white-key {
	background-color: #fff;
}

.black-key {
	width: 4rem;
	height: 13rem;
	border-radius: 5px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background-color: #000;
	z-index: 2;
	margin: 0 -35px 0 -35px;
}