#wrapper{
		
		background-color:#f6d55c;
		border-radius:72px;
		padding:20px;
		}
body{
		background: radial-gradient(circle at top, #173f5f, #3caea3);
		font-family:sans-serif;
}
h1{
	background-color:#3caea3;
	padding:25px;
	border-radius:15px;
	text-align:center;
	
	
}
.responsive{
	max-width:100%;
	height:auto;
}
#grid_nav{
	display:grid;
	grid-template-columns:33% 67%;
	column-gap:30px;
}
#nav_links{
	display:grid;
	grid-template-columns:100%;
	height:auto;
	justify-content:center;
	align-items:center;
	background-color:#3caea3;
	padding:10px;
	border-radius:10px;
}
#nav_links ul li{
	border:1px solid black;
	background-color:white;
	list-style-type:none;
	text-align:center;
	margin-bottom:10px;
	padding:5px;
	border-radius:10px;
	max-width:75%;
	min-width:100px;
	margin-right:30px;
}
#grid_species{
	display:grid;
	grid-template-columns:33% 33% 33%;
	grid-template-rows:auto;
	grid-column-gap:20px;
	grid-row-gap:20px;
	justify-content:center;
	
}
.species_pics{
	background-color:#ed553b;
	padding:5px;
	border:2px solid #173f5f;
	border-radius:10px;
	
}
#species{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	gap:20px 20px;
	justify-content:center;
	margin-left:30px;
	
}
#species a{
	max-width:150px;
}
img{
	max-width:50%;
	height:auto;
	
}
#links{
	display:flex;
	flex-direction:column;
	height:265px;
	align-items:center;
	background-color:#3caea3;
	padding:10px;
	border-radius:10px;
	
	
}
#links ul li{
	border:1px solid black;
	background-color:white;
	list-style-type:none;
	text-align:center;
	margin-bottom:10px;
	padding:5px;
	border-radius:10px;
	width:200px;
	margin-right:30px;
	}
a:link{
	color:#173f5f;
	text-decoration:none;
}
a:visited{
	color:blue;
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
}
a:active{
	color:#f6d55c;
}
	
@media (min-width:700px){
	#wrapper{
		width:700px;
		margin:auto;
		background-color:#f6d55c;
		border-radius:72px;
		padding:30px;
		font-size:1.1em;
		}
	#flex_nav{
		display:flex;
		column-gap:15px;
		}
	
	img{
	max-width:100%;
	height:auto;
	
}
ul li{
	border:1px solid black;
	background-color:white;
	list-style-type:none;
	text-align:center;
	margin-bottom:10px;
	padding:5px;
	border-radius:10px;
	width:200px;
	margin-right:30px;
	height:auto;
	}
	
}
@media (min-width:1000px){
	#wrapper{
		width:1000px;
		margin:auto;
		background-color:#f6d55c;
		border-radius:72px;
		padding:60px;
	}
	#species{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	gap:20px 20px;
	justify-content:flex-start;
	
}
	#species a{
	max-width:180px;
	}
	
}