* {
	box-sizing: border-box;
}

body,
html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100dvh;
	background-color: #fcf7ed;
	font-family: "Instrument Sans", sans-serif;
}

.main {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;

    color: #000;
}

.center {
	text-align: center;
	max-width: 100%;
	padding: 0 10px;
}

.registry-page-title {
	font-size: 60px;
	font-weight: 400;
	margin-bottom: 10px;
	font-family: "Instrument Serif", serif;
}

.registry-desc {
	margin-top: 0;
	font-size: 13px;
	text-wrap: balance;
	letter-spacing: .2em;
	opacity: .7;
	text-transform: uppercase;
	font-family: "Instrument Sans", sans-serif;
	&.smol {
		text-transform: none;
		letter-spacing: normal;
		font-size: 14px;
	}
}


.btn {
	display: inline-block;
	margin: 5px;
	margin-top: 25px;
	background: none;
	transition: background-color 0.1s ease, color 0.1s ease, transform 0.1s ease;
	border: solid 1px #2f241b1f;
	padding: 13px 30px;
	border-radius: 100px;
	font-family: "Instrument Sans", sans-serif;
	font-size: 17px;
	position: relative;
	color: #000;
	text-decoration: none;
	&:hover {
		background: #2f241b;
		color: #fff;
		cursor: pointer;
	}
	&:active {
		transform: scale(0.95);
	}
}

a.subtle {
	color: inherit;
	&:active {
		color: #000;
		opacity: 1.5;
	}
}