:root {}

html,
body {
	background: black;
	width: 100%;
	height: 100%;
	visibility: visible;
	opacity: 1;
	-webkit-font-smoothing: subpixel-antialiased;
	touch-action: none;
	-webkit-text-size-adjust: none;
	scroll-behavior: smooth;
	overscroll-behavior: none;
	-webkit-touch-callout: none;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin: 1rem 0 0;
}

html,
body,
* {
	-webkit-user-drag: none;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	-webkit-highlight: none;
	-webkit-user-drag: none;
	-webkit-touch-callout: none;
	user-select: none;
	-webkit-user-select: none;
}

#container {
	position: relative;
	font-family: 'regular';
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 1rem;
	padding-bottom: 1rem;
}

#title {}

#share-btn {
	cursor: pointer;
	color: grey;
	font-family: 'bold';
	font-size: 0.7rem;
	letter-spacing: 0.04em;
}

#share-btn:hover {
	color: lightgrey;
}

#share-btn:active {
	color: snow;
}

#video-container {
	height: 60vh;
	aspect-ratio: 9/16;
}

#video-container .plyr {
	height: 100% !important;
	min-height: 100%;
	max-height: 100%;
	width: auto;
	min-width: auto;
}

#current-video {
	height: 100%;
}

.plyr__control--overlaid,
.plyr__control:hover {
	background: darkslategrey !important;
}

.plyr--full-ui input[type='range'] {
	color: lightgray !important;
}

#logos {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1rem;
	width: 100%;
}

.logo {
	width: 2.8rem;
}

/* For mobile devices (portrait and landscape) */
@media only screen and (max-width: 600px) {

	html,
	body {
		font-size: 20px;
	}

	#container {
		width: 90%;
	}
}

/* For tablets (portrait and landscape) */
@media only screen and (min-width: 601px) and (max-width: 1024px) {

	html,
	body {
		font-size: 28px;
	}

	#container {
		width: 90%;
	}
}

/* For desktops and larger screens */
@media only screen and (min-width: 1025px) {

	html,
	body {
		font-size: 23px;
	}

	#container {
		width: 64%;
	}
}

/* For very large screens */
@media only screen and (min-width: 1281px) {

	html,
	body {
		font-size: 30px;
	}

	#container {
		width: 32%;
	}
}