section .preview-section {
	position: relative;
	height: 30rem;
	border-radius: 0.5rem;
	overflow: hidden;
}
section .preview-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
section .preview-section.upload .preview-image {
	display: block;
}
section .overlay-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	z-index: 2;
}
section .overlay-container::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg,
			red,
			orange,
			yellow,
			lightgreen,
			cyan,
			blue);
}
section .preview-section.upload .overlay-container::after {
	display: none;
}
section .overlay {
	width: 50%;
	height: 100%;
}
section .text-overlay {
	width: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9rem;
	font-weight: bold;
}
section .upload-content {
	border: none;
	width: fit-content;
	padding: 0;
	border-radius: 0;
	margin-top: 0;
}