@font-face {
	font-family: apple;
	src: url(images/Apple.woff);
}
@font-face {
	font-family: Bakedapple;
	src: url(images/BakeappleDEMO.woff);
}
body {
	background-image: url("images/applebg.jpg");
	background-attachment: fixed;
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
	background-color: #fff7ec;
}

div.parent {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: 200px 45px auto auto;
	width: 700px;
	height: 900px;
	padding: 4px;
	z-index: 4;
	margin: auto;
	border: 5px solid rgb(129, 87, 68);
	box-shadow: 5px 5px 3px 0 rgba(85, 67, 69, 0.589);
	border-radius: 10px;
	background-color: rgb(255, 238, 221);
	position: relative;
}

div.footer {
	border: 3px dashed rgb(42, 141, 80);
	border-radius: 10px;
	padding: 14px;
}

div.left,
div.middle,
div.right {
	border: 1px dashed #fff0d1;
	border-radius: 2px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

div.header {
	grid-area: 1 / 1 / 2 / 6;
	height: 150px;
	width: 670px;
	position: sticky;
	top: 0;
	display: inline-block;
	overflow: hidden;
	padding: 13px;
}

div.header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

div.left {
	grid-area: 3 / 1 / 4 / 2;
	position: relative;
}

div.middle {
	grid-area: 3 / 2 / 4 / 5;
	position: relative;
	height: 580px;
}

div.right {
	grid-area: 3 / 5 / 4 / 6;
	position: relative;
}

div.navbar {
	grid-area: 2 / 1 / 3 / 6;
	display: inline-flex;
	align-items: stretch;
	gap: 5px;
	height: 35px;
	width: 693px;
	border: 0px solid rgba(10, 92, 10, 0.596);
	padding: 2px;
}

div.footer {
	grid-area: 4 / 1 / 5 / 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
}

.nav-btn {
	position: relative;
	padding: 0 16px;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: 1px;
	font-family: "apple";
	box-shadow: 1px 1px 3px rgba(185, 185, 185, 0.15);
	transition: all 0.2s;
	cursor: pointer;
	background-size: 20px 20px;
	background-position: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
}
.nav-btn::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
	border: 1px dashed rgba(255, 255, 255, 0.7);
	border-radius: 2px;
	pointer-events: none;
}
.nav-btn::before {
	content: "+";
	font-size: 10px;
	margin-right: 5px;
	opacity: 0.8;
}
.nav-btn:hover {
	transform: scale(1.05) translateY(-2px);
}

.button-home {
	background-color: #b19276;
	border: 1px solid #503000;
	color: rgb(87, 39, 16);
}
.button-about {
	background-color: #ce4624;
	border: 1px solid #580909;
	color: rgb(87, 39, 16);
}
.button-more {
	background-color: #59af59;
	border: 1px solid #4b7a00;
	color: rgb(87, 39, 16);
}

.button-home:hover {
	color: #59af59;
}

.button-about:hover {
	color: #b19276;
}

.button-more:hover {
	color: #ce4624;
}

h1 {
	display: block;
	color: rgb(87, 39, 16);
	background: #ce4624;
	border: 1px dashed #fff;
	box-shadow: 0 0 0 3px #ce4624;
	padding: 5px;
	font-family: apple;
	margin-top: 0;
	font-size: 15px;
	text-align: center;
}
h2 {
	display: block;
	color: rgb(87, 39, 16);
	font-family: Bakedapple;
	font-size: 25px;
	margin-top: 0;
	padding: 2px;
	letter-spacing: 2px;
	font-weight: normal;
	text-align: center;
}
h3 {
	display: block;
	color: rgb(87, 39, 16);
	padding: 5px;
	font-family: apple;
	margin-top: 0;
	font-size: 12px;
	text-align: center;
	border-bottom: 3px solid #0b6d18;
}
p {
	font-family: Quicksand, sans-serif;
	color: #503000;
	text-align: center;
	font-size: 14px;
}
