@font-face {
	font-family: "CormorantInfant-Bold"; /* set name */
	src: url(../fonts/CormorantInfant-Bold.ttf); /* url of the font */
}

@font-face {
	font-family: "Allison_Script"; /* set name */
	src: url(../fonts/Allison_Script.otf); /* url of the font */
}

@font-face {
	font-family: "Bentham-Regular"; /* set name */
	src: url(../fonts/Bentham-Regular.ttf); /* url of the font */
}

html, body {
	height: 100%;
	margin: 0;
}
body {
	display: flex;
	justify-content: center;
	align-items: center;
}

.h2 {
	font-family: "CormorantInfant-Bold";
	font-size: clamp(2.5rem, 4vw, 3rem);
	color: #E21C67;
	margin-bottom: 1.5em;
}

.h3 {
	font-family: "Allison_Script";
	font-size: clamp(3.5rem, 6vw, 6rem);
	line-height:0;
	color: #E21C67;
	font-weight: 300;
	margin-bottom: 0.5em;
}

.names {
	font-family: "Bentham-Regular";
	color: #E21C67;
	font-size: clamp(3rem, 5vw, 5rem);
}


.title-wrapper {
	margin: 0.5em 0 3em 0;
	text-align: center;
}

.hidden {
	display: none!important;
}
.visible {
	display: block;
}
#dropzone {
	width: 50%;
	padding: 40px;
	border: 8px dashed #E21C67;
	text-align: center;
	color: #E21C67;
	font-size: 3em;
	border-radius: .5rem;
	cursor: pointer;
}
#dropzone:hover {
	border-color:#0063D5FF;
	color: #0063D5FF;
}
#dropzone.dragover {
	border-color: #0063D5FF;
	color: #0063D5FF;
}

.scroll-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	scroll-behavior: smooth;
	width: 100%;
	max-height: 100vh;
	overflow-y: auto;
	padding: 20px;
	box-sizing: border-box;
}

@media (min-width: 1025px) {
	.background-image {
		background-image: url('./images/background-web.png');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
		background-attachment: fixed;
	}

}
@media (max-width: 1024px) {
	body.background-image {
		background: none;
	}

	body.background-image::before {
		content: "";
		position: fixed;
		inset: 0;
		background-image: url('./images/background-mob.png');
		background-size: cover;
		background-position: center;
		z-index: -1;
	}
	.h2 {
		font-size: clamp(2.5rem, 10vw, 3rem);
	}
	.h3 {
		font-size: clamp(3.5rem, 13vw, 9rem);
	}
	.names {
		font-size: clamp(3rem, 10vw, 7rem);
	}

}
#previewContainer {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.preview {
	width: 400px;
	border: 1px solid #ccc;
	padding: 5px;
	font-size: 12px;
}

.preview img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.progressBar {
	height: 6px;
	background: #eee;
	margin-top: 5px;
}

.progress {
	height: 100%;
	width: 0%;
	background: green;
}
