html, body {
	background-color: black;
	height: 100%;
	width: 100%;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#container {
	height: 100%;
	width: 100%;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}

#video-input {
	background-color: inherit;
	border-style: none;
	outline: none;
	width: 100%;
	font-family: "Arial", sans-serif;
	font-size: 20px;
	color: white;
	padding: 6px 8px;
}

#frame {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5% 0;
}

#vinyl {
	cursor: pointer;
	position: relative;
	background-color: white;
	width: 40vw;
	height: 40vw;
	border-radius: 50%;
	transition: transform 1200ms ease;
}

#pin {
	background-color: black;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 4vw;
	height: 4vw;
	max-width: 4vw;
	max-height: 4vw;
	z-index: 1;
}

#vinyl.moving {
	animation-name: rotate; 
	animation-duration: 1.33333333s; 
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	background-color: black;
}

#video {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	z-index: 0;
}

#video-placeholder {
	border-radius: 50%;
	overflow: hidden;
	width: 147vw;
	height: 147vw;
	max-width: 147vw;
	max-height: 147vw;
}

iframe{
	position: absolute;
	transform: scale(0.5) translate(-100%, -100%);
	left: 50%;
	top: 50%;
	pointer-events: none;
}

@keyframes rotate {
	100% {transform: rotate(360deg);}
}