* {
	box-sizing: border-box;
}

#main {
	display: flex;
	justify-content: center;
	padding: 30px 30px 100px;
}

#content {
	position: relative;
	width: 100%;
	max-width: 800px;
	font-size: 15px;
	vertical-align: bottom;
}

h1 {
	margin: 0px;
	font-size: 30px;
	text-align: center;
	user-select: none;
}

textarea {
	padding: 5px;
	min-height: 100px;
	width: 100%;
	font-size: 14px;
	resize: vertical;
}

#compare {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}

#compare img {
	display: block;
	max-height: 100vh;
	max-width: min(100%, 100vw);
	width: auto;
	height: auto;
	object-fit: contain;
}

#share {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 5px 6px 5px 4px;
	height: 35px;
	width: 35px;
	background-color: var(--light-green-color);
	border-radius: 50%;
	cursor: pointer;
}

#share:not(.clicked) {
	transition: background-color 0.3s linear;
}

#share.clicked {
	background-color: var(--leaf-green-color);
}
