* {
	margin: 0;
	padding: 0;
	font-family: "Roboto", sans-serif;
	box-sizing: border-box;
}

.hero {
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(#e7baff, #c2b6d9);
	display: flex;
	align-items: center;
	justify-content: center;
}

#drop-area {
	width: 500px;
	height: 300px;
	padding: 30px;
	background: #fff;
	text-align: center;
	border-radius: 10px;
}

#img-view {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	border: 2px dashed #bbb5ff;
	background: #f7f8ff;
}

#img-view img {
	width: 100px;
	margin-top: 25px;
}

#img-view span {
	display: block;
	font-size: 12px;
	color: #777;
	margin-top: 15px;
}
