body{
	background-color: rgb(60, 22, 66);
	font-family: courier;
	color: rgb(175, 252, 65);
	background-image:url("../image/cats.png");
}
a{
	font-weight: bold;
	text-decoration: none;
}
ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
li{
	text-decoration: none;
	padding: 5px;
}
li:hover{
	opacity: 0.5;
}
h3{
	margin:0;
	color: rgb(29, 211, 176);
}
summary{
	color: rgb(29, 211, 176);
}
.icon{
	height: 20px;
	width: auto;
}
#header, #footer{
	text-align: center;
	color: rgb(178, 255, 158);
	background-color: rgb(86, 70, 95);
	padding:10px;
}
#links ul{
	padding: 0;
}
#intro{
	background-color: rgb(0, 0, 0);
	padding: 10px;
}
#links, #nav{
	background-color: rgba(8, 99, 117, 0.75);
	color: white;
	font-weight: bold;
}
.nav-btn, .web-btn{
	background-color: rgb(178, 255, 158);
	border: 5px outset rgb(29, 211, 176);
  padding: 7px;
	text-align: center;
}
.nav-btn:hover, .web-btn:hover{
	border: 5px inset rgb(178, 255, 158);
	background-color: rgb(8, 99, 117);
	color: rgb(178, 255, 158);
}
.nav-btn:active, .web-btn:active{
	background-color: rgb(60, 22, 66);
}

#header{grid-area: top;}
#intro{grid-area: center;}
#links{grid-area: right;}
#nav{grid-area: left;}

/*for landscape tablet and bigger*/
@media only screen and (min-width: 768px){
	#main{
		margin-top: 5%;
		margin-left: 7%;
		margin-right: 7%;
	}
	#body-container{
		display: grid;
		grid-template-areas: 
			'top top top top'
			'left center center right';
	}
	#links p{
		padding: 10px;
	}
	#nav, #links{
		display: flex;
		flex-direction: column;
	}
}