@font-face {
	font-family: "Brittany";
	src: url("Assets/Fonts/Brittany.ttf") format("truetype"),
		url("Assets/Fonts/Brittany.otf") format("opentype");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

:root {
	--olive: #575a49;
	--olive-dark: #424538;
	--paper: #f1ede5;
	--paper-edge: 1rem;
	--texture-fade: 1rem;
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	background: #858778;
}

body {
	min-height: 100vh;
	margin: 0;
	padding: 1rem;
	color: var(--olive);
	font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.page-wrap {
    display: relative;
	width: 100%;
	max-width: 60rem;
	min-height: calc(100vh - 4rem);
	margin: 0 auto;
	border: var(--paper-edge) solid transparent;
	border-image-source: url("Assets/ImageElements/TornPaperBorder.png");
	border-image-slice: 35;
	border-image-width: var(--paper-edge);
	border-image-repeat: stretch;
	background-color: var(--paper);
	background-image:
		linear-gradient(
			to right,
			var(--paper),
			transparent var(--texture-fade),
			transparent calc(100% - var(--texture-fade)),
			var(--paper)
		),
		linear-gradient(
			to bottom,
			var(--paper),
			transparent var(--texture-fade),
			transparent calc(100% - var(--texture-fade)),
			var(--paper)
		),
		url("Assets/ImageElements/PaperTexture.png");
	background-repeat: repeat;
	background-clip: padding-box;

    
}


a {
	color: var(--olive-dark);
	text-decoration-color: rgb(87 90 73 / 50%);
	text-decoration-thickness: 1.5px;
	text-underline-offset: 0.15em;
}

a:hover,
a:focus-visible {
	color: #73775f;
	text-decoration-color: currentColor;
}

hr {
	border: 0;
	border-top: 2px solid currentColor;
}

img {
	display: block;
	max-width: 100%;
}

.floral1 {
	position: absolute;
	top: -3rem;
	left: -3rem;
	z-index: 0;
	width: 100%;
	height: 16rem;
	background-image: url("Assets/ImageElements/Floral1.jpg");
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
	opacity: 0.2;
	mix-blend-mode: multiply;
	pointer-events: none;
}

.font-couples-names {
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.font-handwriting {
	font-family: "Brittany", "Segoe Script", cursive;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0;
	text-transform: none;
}

.font-couples-names + .font-handwriting {
	font-size: 0.68em;
}

.size-large {
	font-size: calc(min(5rem, 10vw));
}

.size-medium {
	font-size: calc(min(2rem, 5vw));
}

.text-olive {
	color: var(--olive);
}

.border-olive {
	color: var(--olive);
}

.bg-white {
	background-color: #fff;
}

.centered {
	text-align: center;
}

.uppercase {
	text-transform: uppercase;
}

.d-flex {
	display: flex;
}

.d-relative {
	position: relative;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-grow-1 {
	flex-grow: 1;
}

.justify-content-center {
	justify-content: center;
}

.float-clear {
	clear: both;
}

.m-0 {
	margin: 0;
}

.p-0 {
	padding: 0;
}

.p-1 {
	padding: 1rem;
}
.p-2 {
	padding: 2rem;
}
.px-2 {
	padding-right: 2rem;
	padding-left: 2rem;
}

.py-1 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.w-75 {
	width: 75%;
	margin-right: auto;
	margin-left: auto;
}

.w-100 {
	width: 100%;
}

.photo-shadow {
	box-shadow:
		0 0.25rem 0.5rem rgb(40 42 34 / 18%),
		0 0.9rem 1.8rem rgb(40 42 34 / 14%);
	transform: rotate(0.6deg);
}
