* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Caveat", cursive;
}

html,
body {
	background-color: #fcefcb;
}

.letter {
	max-width: 600px;
	margin: 20px auto;
	border-radius: 12px;
	width: 100%;
}

.letter-header {
	background-color: #fad59a;
	border-radius: 12px;
	padding: 140px 20px;
	position: relative;
	text-align: center;
}

.letter-header > h1 {
	margin: 0 100px 0 100px;
}

.letter-content {
	padding: 12px;
	background-color: white;
	border-radius: 12px 12px;
	font-size: 22px;
	margin-top: 10px;
}

.letter-content p {
	margin-top: 12px;
}

.stamp img {
	width: 100px;
}

.stamp-1 {
	position: absolute;
	left: 5px;
	bottom: 5px;
}

.stamp-2 {
	position: absolute;
	right: 5px;
	top: 5px;
}

.red {
	color: #d84040;
}

@media (max-width: 600px) {
	.letter {
		width: 95vw;
		max-width: none;
		margin: 10px auto;
		border-radius: 0;
		min-height: 100vh;
	}
	.letter-header {
		padding: 80px 16px;
	}
	.letter-content {
		font-size: 20px;
		padding: 16px;
	}

	.stamp img {
		width: 75px;
	}

	.letter-header > h1 {
		margin: 0 75px 0 75px;
	}
}
