﻿html,
body {
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}

.wave {
	position: absolute;
	top: -10px;
	left: -10px;
	width: 110%;
	height: 25px;
	filter: drop-shadow(17px 3px 10px #a28089) blur(2px);
	opacity: 1.0;
	transform: scaleY(0.5);
}


.page-container {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100vw;
	display: grid;
	grid-template-columns: 10% 3fr 1fr;
	grid-template-rows: calc(100vw * 0.012) calc(100vw * 0.0685); /* 1.2% of width, 6.85% of width */
}

	.page-container .header {
		font-family: "Satisfy";
		font-weight: 400;
		font-style: normal;
		font-size: 3.75vw;
		justify-self: start;
		align-self: center;
		color: white;
		-webkit-text-stroke: 1px black;
	}

	.page-container .header-logo {
		justify-self: end;
		align-self: center;
	}

		.page-container .header-logo IMG {
			height: calc(100vw * 0.0685);
		}

.llc {
	display: none;
	font-family: "Quicksand";
	font-weight: 400;
	font-style: normal;
	font-size: 0.5vw;
}

.header-menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 3rem;
	padding-top: 2rem;
	gap: 1.5rem;
}

	.header-menu a {
		text-decoration: none;
		color: #3fb0bf;
		font-family: "New Amsterdam";
		font-weight: 200;
		font-size: 16pt;
	}

		.header-menu a:hover {
			text-decoration: underline;
		}
