html {
	height: 100%;
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-family: "Nanum Gothic Coding", monospace;
	font-weight: 400;
	color: #f1f1f1;
	background-color: #2b2b2b;
}

.header {
	text-align: center;
}

.header-name {
	font-weight: 700;
}

.header-description {
	font-weight: 400;
}

.grid-container {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	flex: 1;
	padding: 20px;
}

.textarea-container {
	grid-column: 1 / -1;
	display: flex;
	justify-content: space-evenly;
}

.textarea {
	font-family: "Nanum Gothic Coding", monospace;
	font-size: medium;
	width: calc(50% - 20px);
	height: 600px;
	background-color: #e2e2e2;
	color: #2b2b2b;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	resize: none;
	margin: 5px;
	text-wrap: nowrap;
	overflow-y: auto;
	white-space: pre-wrap;
	word-wrap: break-word;
	text-wrap: pretty;
	outline: none;
}

.error-display {
	color: #ff4d5e;
	font-weight: 700;
	text-align: center;
	margin: 10px 0;
}

.added {
	background-color: #b8e3b9;
}

.removed {
	background-color: #fbafb6;
}

.button-container {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
}

.find-diff-button {
	padding: 10px 20px;
	margin-top: 5px;
	cursor: pointer;
	height: fit-content;
	width: max-content;
	border-radius: 10px;
	border: none;
}

.find-diff-button:hover {
	background-color: #cacaca;
}

.footer {
	width: 100%;
	text-align: center;
	font-size: small;
	font-weight: 400;
	font-style: normal;
	margin-top: auto;
	padding-bottom: 10px;
}

.footer a {
	color: #f1f1f1;
}

.footer a:hover {
	color: #938bfd;
	zoom: 1.1;
}
