body {
	font-family: "Arial";
	border-top-style: double;
	border-left-style: double;
	border-right-style: double;
	border-bottom-style: double;
	border-color: #8f0401;
	border-width: 25px;	
	}
	
nav {
    width: 90%;
    height: 170px;
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    background-color: #ed3205;
}
nav .heading {
    font-size: 70px;
    font-weight: 700;
    color: white;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    padding: 8px 15px;
    border-radius: 10px;
    transition: 0.2s ease-in;
}
nav ul li a {
    color: white;
    font-size: 30px;
    font-weight: 500;
    text-decoration: none;
    color: white;
}
nav ul li:hover {
    background-color: #8f0401;
}
nav ul li a:hover {
    color: white;
}

.grid-container { 
	display: grid;
	grid-template-areas:
		'index index'
		'page2 page3'
		'page2 page3'
		;
	gap: 10px;
	background-color: #ed3205;
	padding: 10px;
}
.grid-container > div {
	background-color: rgba(255, 222, 100, 0.8);
	text-align: center;
	padding: 20px 0;
	font-size: 30px;
}
.item1 { 
	grid-area: index; 
}
.item1 h1 {
	font-size: 40px;
}
.item1 p {
	font-size: 30px;
}
.item1 img {
	height: 250px;
	width: 350px;	
}
.item2 { 
	grid-area: page2; 
}
.item2 h1 {
	font-size: 35px;
}
.item2 p {
	font-size: 25px;
}
.item2 img {
	height: 250px;
	width: 350px;	
}
.item3 { 
	grid-area: page3; 
}
.item3 h1 {
	font-size: 35px;
}
.item3 p {
	font-size: 25px;
}
.item3 img {
	height: 250px;
	width: 350px;	
}

.page2-container {
	display: grid;
	grid-template-areas:
		'top'
		'bottom'
		;
	gap: 10px;
	background-color: #ed3205;
	padding: 10px;
}
.page2-container > div {
	background-color: rgba(255, 222, 100, 0.8);
	text-align: center;
	padding: 20px 0;
	font-size: 30px;
}
.page2-item1 {
	grid-area: top;
}
.page2-item1 h1 {
	font-size: 40px;
}
.page2-item1 p {
	font-size: 30px;
}
.page2-item2 {
	grid-area: bottom;
}
.page2-item2 h1 {
	font-size: 30px;
}
.page2-item2 p {
	font-size: 20px;
}
.page2-img {
	height: 230px;
	width: 300px;
}
.page2-container button {
    width: 175px;
    height: 50px;
    border-radius: 12px;
    border-color: transparent;
	color: #ed3205;
	font-size: 30px;
}
.page2-container button:hover {
    background-color: #8f0401;
	color: white;
}

.page3-container {
	display: grid;
	grid-template-areas:
		'item1 item2'
		'item3 item4'
		'foot foot'
		;
	gap: 10px;
	background-color: #ed3205;
	padding: 10px;
}
.page3-container > div {
	background-color: rgba(255, 222, 100, 0.9);
	text-align: center;
	padding: 20px 0;
	font-size: 30px;
}
.page3-item1 {
	grid-area: item1;
}
.page3-item1 h1 {
	font-size: 30px;
}
.page3-item1 p {
	font-size: 20px;
}
.page3-item2 {
	grid-area: item2;
}
.page3-item2 h1 {
	font-size: 30px;
}
.page3-item2 p {
	font-size: 20px;
}
.page3-item3 {
	grid-area: item3;
}
.page3-item3 h1 {
	font-size: 30px;
}
.page3-item3 p {
	font-size: 20px;
}
.page3-item4 {
	grid-area: item4;
}
.page3-item4 h1 {
	font-size: 30px;
}
.page3-item4 p {
	font-size: 20px;
}
.page3-item5 {
	grid-area: foot;
}
.page3-item5 h1 {
	font-size: 30px;
}
.page3-item5 p {
	font-size: 20px;
}
.page3-img {
	height: 350px;
	width: 350px;
}
.page3-container button {
    width: 175px;
    height: 50px;
    border-radius: 12px;
    border-color: transparent;
	color: #ed3205;
	font-size: 30px;
}
.page3-container button:hover {
    background-color: #8f0401;
	color: white;
}

hr {
	border-top: 5px dashed red;
	}
h1 {
	font-size: 45px;
	text-shadow: -2px 2px 0 #0a0707;
	color: white;
}
h2 {
	font-size: 35px;
	color: #CC0000;
}
h3 {
	font-size: 20px;
	padding-top: 5px;
	padding-bottom: 10px;
	color: #CC0000;
}
p {
	font-size: 20px;
	color: #37373c;
	}
ul {
	font-size: 20px;
	display: table;
	text-align: center;
	position: relative; left: -18px;
	color: #282828;
	}
a {
	font-size: 20px;
	text-decoration:none
}