@font-face {
	font-family: "Aluminia";
	src: url("https://assets.codepen.io/14179/LfAAluminia-Roman.woff2")
		format("woff2");
}
* {
	box-sizing: border-box;
}

:root {
	--theme: #dab378;
	--background: #19384a;
}

*::-webkit-scrollbar {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}

html,
body {
	background: var(--background);
	height: 100vh;
	font-size: 120%;
	padding: 0;
	margin: 0;
	font-family: "Aluminia", serif;
	color: white;
}

main {
	height: 100%;
	background: var(--background);
	padding: 10px;
	border: 1px solid var(--theme);
	max-height: 100vh;
	overflow: scroll;
	margin: 10px;
	max-height: calc(100vh - 20px);
}

@media screen and (min-width: 767px) {
	main {
		margin: 20px;
		max-height: calc(100vh - 40px);
	}
}

.ye-olde-phone {
	max-width: 400px;
	margin: 0 auto;
}

.ye-olde-phone svg {
	max-height: 50vh;
}

@media screen and (min-width: 767px) {
	.ye-olde-phone svg {
		max-height: 100vh;
	}
}

.content {
	max-width: 600px;
	margin: 0 auto;
}

@media screen and (min-width: 767px) {
	.content {
		display: grid;
		grid-template-columns: 1fr 2fr;
		max-width: 100%;
	}
}

@media screen and (min-width: 767px) {
	.ye-olde-phone {
		align-self: start;
		justify-self: start;
		min-height: 100vh;
	}
}

.ye-olde-phone img {
	max-width: 100%;
}

.ye-olde-phone path {
	stroke: var(--theme) !important;
	fill: var(--theme) !important;
}

.number {
	color: white;
	text-decoration: none;
	display: block;
	text-align: center;
}
.number path {
	fill: white !important;
}

.text-wrapper {
	padding: 15px;
	max-width: 600px;
}

@media screen and (min-width: 767px) {
	.bellwood {
		margin-top: 40px;
	}
}

.bellwood path {
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	-webkit-animation: dash 5s linear forwards;
	animation: dash 5s linear forwards;
	stroke-dashoffset: 0;
}

@-webkit-keyframes dash {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes dash {
	to {
		stroke-dashoffset: 0;
	}
}
h1 {
	font-family: "Signpainter", serif;
	font-size: 5rem;
	font-weight: 400;
	font-feature-settings: "dlig" 1;
	font-feature-settings: "dlig" on;
	margin-bottom: 0;
	padding-bottom: 0;
	color: var(--theme);
}

h1,
h2 {
	text-align: center;
}

h2 {
	padding-top: 0;
	margin-top: 0;
	padding-bottom: 1px;
	font-weight: normal;
	color: var(--theme);
	font-size: 1.3rem;
}

@media screen and (min-width: 767px) {
	h2 {
		font-size: 1.9rem;
	}
}

h3 {
	margin-bottom: 0;
	color: var(--theme);
}

h3 + p {
	margin-top: 0;
	margin-top: 10px;
}

details,
summary {
	outline: none;
	color: var(--theme);
}

details {
	color: white;
	padding-top: 3px;
}

a {
	color: white;
	text-decoration: underline;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a:hover,
a:focus {
	color: var(--theme);
}

summary {
	font-size: 1.2rem;
	cursor: none;
	color: var(--theme);
	margin-bottom: 0;
	padding-bottom: 0;
}

summary + p {
	margin-top: 10px;
}

form {
	padding: 0;
	display: block;
}
form div {
	display: -webkit-box;
	display: flex;
}
form input[type="email"] {
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	background-color: rgba(0, 0, 0, 0.25);
	color: var(--theme);
	margin: 0;
	width: 100%;
	border: none;
	font-family: "Aluminia", serif;
	font-size: 1.2rem;
	padding: 3px 15px;
}
form input[type="submit"] {
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	background-color: white;
	color: #19384a;
	border: none;
	padding: 10px;
	font-family: "Aluminia", serif;
	font-size: 1rem;
}
form label {
	display: block;
	font-feature-settings: "smcp";
	text-transform: lowercase;
	font-size: 1.5rem;
	color: white;
	padding-bottom: 10px;
}

summary::marker,
summary::-webkit-details-marker {
	display: none;
	content: "";
}

details summary::-webkit-details-marker {
	display: none;
}

summary::before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 25px;
	background-image: url("./fleuron2.svg");
	background-position: center center;
	background-size: 100%;
	background-repeat: no-repeat;
	margin-right: 0;
	transition: transform 0.3s ease;
	position: relative;
	top: 3px;
}

details summary:hover {
	cursor: pointer;
}

details[open] summary::before {
	transform: rotate(90deg);
}

::-webkit-scrollbar {
	display: none;
}

details p {
	padding-left: 35px;
}
