html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

/*--------------------------------------------------------------
Fonts
--------------------------------------------------------------*/

/* Lydian via MyFonts */
@font-face {
	font-family: 'LydianBTWXX-Bold';
	font-display: swap;
	src: url('assets/fonts/lydian/38FC5F_0_0.woff2') format('woff2');
}

/* Libre Basverville (doesn't have bold italic) via Google Fonts */

/* libre-baskerville-regular - latin */
@font-face {
	font-display: swap;
	font-family: 'Libre Baskerville';
	font-style: normal;
	font-weight: 400;
	src: url('assets/fonts/libre-baskerville/libre-baskerville-v14-latin-regular.woff2')
		format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-baskerville-italic - latin */
@font-face {
	font-display: swap;
	font-family: 'Libre Baskerville';
	font-style: italic;
	font-weight: 400;
	src: url('assets/fonts/libre-baskerville/libre-baskerville-v14-latin-italic.woff2')
		format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-baskerville-700 - latin */
@font-face {
	font-display: swap;
	font-family: 'Libre Baskerville';
	font-style: normal;
	font-weight: 700;
	src: url('assets/fonts/libre-baskerville/libre-baskerville-v14-latin-700.woff2')
		format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
	--font-primary: 'Libre Baskerville', serif;
	--font-secondary: LydianBTWXX-Bold, sans-serif;
	--color-base: #faf9f4;
	--color-text: #00675f;
	--color-hover: #656501;
}

body {
	display: grid;
	place-content: center;
	min-height: 100dvh;
	margin: 0;
	padding: 1em;
	background: var(--color-base);
	font-family: var(--font-primary);
	font-size: clamp(1rem, 0.9815rem + 0.0926vw, 1.0625rem);
	line-height: 1.5;
	text-align: center;
	color: var(--color-text);
}

p {
	text-wrap: pretty;
}

a,
a:visited {
	color: inherit;
	transition: 0.3s color;
	white-space: nowrap;
}

a:hover {
	color: var(--color-hover);
}

h2 {
	font-family: var(--font-secondary);
	/* @link https://utopia.fyi/type/calculator?c=320,33,1.2,1400,37,1.25,0,0,1440-2560-768-1920&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */
	font-size: clamp(2.0625rem, 1.9884rem + 0.3704vw, 2.3125rem);
	line-height: 1.2;
	font-weight: 400;
}

.logo {
	display: block;
	width: clamp(16.875rem, 14.8295rem + 9.0909vw, 21.875rem);
	max-width: 100%;
	margin: 0 auto clamp(2.5rem, 1.9886rem + 2.2727vw, 3.75rem);
}

.visit {
	margin-top: 3em;
}
