:root {
	--accent: #c9b896;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	background: #e7e1d5;
	background-image: repeating-linear-gradient(
		120deg,
		rgba(160, 130, 80, 0.08) 0px,
		rgba(160, 130, 80, 0.05) 1px,
		transparent 1px,
		transparent 5px
	);
	font-family: "Montserrat", -apple-system, system-ui, sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

::selection {
	background-color: #e7e1d5;
}

main {
	max-width: 580px;
	width: 100%;
	background: #fff8eb;
	padding: 1.25rem 0rem 2rem 0rem;
	border-radius: 0px;
	box-shadow: 0 0 0 1px #c9b896,
		0 0 0 4px #faf7f0, 0 0 0 5px #2c2418,
		12px 12px 0px -3px rgba(0, 0, 0, 0.05) ;
	text-align: center;
	position: relative;
}

.town {
	display: flex;
	width: 100%;
	height: auto;
	padding-bottom: 1.5rem;
}


.tiny-text {
	display: inline-block;
	font-family: "Montserrat", sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
	color: #9b7e52;
	font-weight: 600;
	margin-bottom: 0;
	background: transparent;
	padding: 0;
}

.yay {
	font-family: "Faculty Glyphic", "Times New Roman", serif;
	padding: 0 2rem 0 2rem;
	font-size: 1.6rem;
	letter-spacing: .02rem;
	color: #5a4e38;
	line-height: 1.5;
	text-wrap: balance;
}

.and {
	font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
	font-size: 1.5rem;
	font-weight: 600;
	font-style: italic;
}

h1 {
	font-family: "Faculty Glyphic", "Times New Roman", serif;
	font-size: 3rem;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: #4d4238;
	margin: 0;
	text-transform: uppercase;
}

.location {
	font-family: "Montserrat", sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	color: #9b7e52;
	line-height: 1.6;
	margin: .75rem 0 1rem 0;
	letter-spacing: .07rem;
	text-transform: uppercase;
}

.note {
	font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
	padding: .25rem 2rem 0 2rem;
	font-size: 1rem;
	color: #5a4e38;
	line-height: 1.5;
	text-wrap: balance;
	font-style: italic;
}

.deco-line {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin: 1.5rem 0;
}

.deco-line .line {
	width: 50px;
	height: 1px;
	background: var(--accent);
}

.deco-line .diamond {
	width: 6px;
	height: 6px;
	background: var(--accent);
	transform: rotate(45deg);
}

.deco-line .diamond-large {
	width: 10px;
	height: 10px;
	background: transparent;
	border: 1.5px solid var(--accent);
	transform: rotate(45deg);
}

@media (max-width: 560px) {
	main {
		padding: 1.5rem 0rem 2rem 0rem;
	}

	h1 {
		font-size: 2.5rem;
	}

	.and {
		font-size: 1.25rem;
	}

	.tiny-text {
		letter-spacing: 0.075rem;
	}

	.yay {
		font-size: 1.3rem;
		padding-top: .15rem;
	}

	.location {
		font-size: .75rem;
		letter-spacing: .05rem;
	}

	.note {
		font-size: .95rem;
	}

	.deco-line .line {
		width: 30px;
	}
}