:root {
		--black-key-width: 2.5rem;
		--white-key-width: 4rem;
		--white-key-height: 16rem;
}
body {
	background: linear-gradient(to right, rgb(112, 225, 245), rgb(255, 209, 148));
}
main {
    display: flex;
    margin: 5rem auto;
    justify-content: center;
    width: 60rem;
    padding: 3rem;
	border-radius: 10px;
    border: 1px solid #160801;
    background-color: black;
	box-shadow: 0 0 50px rgba(78, 32, 32, 0.5) inset, 0 1px 11px 9px rgb(58, 45, 40) inset, 0px 0px 6px 5px rgb(125, 85, 85);
}
.note {
	position: relative;
	box-sizing: border-box;
	border: 1px solid #19dad88c;
	transition: all 0.3s;
}
.white {
	height: var(--white-key-height); 
	width: var(--white-key-width);
	background: linear-gradient(#242523 0%,#523838 100%);
	
}
.d, .e, .g, .a, .b {
	margin-left: -1.25rem;
}
.black {
	height: 9rem;
	width: var(--black-key-width);
	background: #2e2727;
	z-index: 1;
	border-radius: 5px;
	margin-left: calc(var(--black-key-width)/2 * (-1));
	box-shadow: -1px -1px 2px rgba(255,255,255,0.2) inset, 0 -5px 2px 3px rgba(0,0,0,0.6) inset, 0 2px 4px rgba(0,0,0,0.5);
}
.animate {
	background: white;
}
span {
	position: absolute;
	color: #dfa808;
	bottom: 7%;
	right:50%;
	transform: translateX(50%);
}
#video-container {
	font-family: 'Germania One', cursive;
	width: 44rem;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
}
video {
	box-shadow: 0px 0px 20px 3px #faf8f8;
}