@media only screen and (max-width: 600px) {
	#home_text_header {
		font-size: 20px !important;
	}

	#home_img_header {
		max-width: 50% !important;
	}
}

#loading_form {
	display: flex;
	align-items: flex-start;
	align-items: center;
}

.loading_form_animation {
	border-radius: 0.5rem;
	background: linear-gradient(
		100deg,
		rgba(255, 255, 255, 0) 40%,
		rgba(255, 255, 255, .5) 50%,
		rgba(255, 255, 255, 0) 60%
	) rgba(30, 30, 30, 0.3);
	background-size: 200% 100%;
	background-position-x: 180%;
	animation: 0.5s loading_form_animation ease-in-out infinite;
}

@keyframes loading_form_animation {
	to {
		background-position-x: -20%;
	}
}

.container_video {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

#canvas {
	position: absolute;
	height: 101%;
	width: 101%;
	filter: blur(50px);
	-webkit-filter: blur(50px);
	z-index: 10;
}

#video {
	max-width: 80vmin;
	max-height: 65vmin;
	position: relative;
	z-index: 11;
}

#form_range {
	box-shadow: 0 1px 20px 0 rgba(128, 130, 195, 0.2);
	background: rgb(22, 22, 22, 0.3);
	backdrop-filter: blur(2px);
	border: 2px solid;
	border-color: rgb(30, 30, 30, 0.5);
	border-radius: 10px;
	padding: 5px 0px;
}

#preview {
	padding: 5px 0.5rem;
}

#preview * {
	margin: 2px 0px;
}

#file_upload_label {
	background: rgb(14 14 14 / 84%);
	padding: 12px 39px;
	border: solid 4px;
	border-radius: 8px;
	border-color: rgb(30 30 30 / 69%);
}

#drag_file {
	background: rgb(0 0 0 / 29%);
	border: dashed 1px;
	border-color: rgba(69, 69, 69, 1);
	border-radius: 8px;
	margin-bottom: 5px;
}

.blink {
	animation: blink_anim 0.8s infinite;
}

@keyframes blink_anim {
	0%, 100% { opacity: 0.9; }
	50% { opacity: 0.3; }
}

#home_text_header { 
	font-size: 38px;
	margin-left: 5%;
}

#home_img_header {
	max-width: 55%;
}

#copy_link:hover {
	color: white !important;
	text-decoration: underline;
	cursor: pointer;
}