* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
nav {
	background-color: #26413C;
	padding: 1rem;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}
nav a {
	display: block;
	padding: 0.5rem;
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 700;
	color: white;
	padding: 20px;

}
h1 {
	color: steelblue;
	border-bottom: 2px solid black;
}
main img {
	width: 150px;
	height: auto;
	float: right;
	padding: 10px;
}
aside img {
	position: relative;
	width: 250px;
	height: auto;
	float: none;
	left: 20px;
}
aside h2 {
	position: relative;
	left: 50px;
	top: -10px;
}
p {
	padding: 10px;
	
}
footer {
	margin-top: 15px;
	border-top: 1px solid #000;
	text-align: center;
}
a:link {
	color: rgb(154, 248, 4);
	background-color: transparent;
	text-decoration: none;
  }
  
  a:visited {
	color: rgb(154, 248, 4);
	background-color: transparent;
	text-decoration: none;
  }
  
  a:hover {
	color: red;
	background-color: transparent;
	text-decoration: underline;
  }
  
  a:active {
	color: yellow;
	background-color: transparent;
	text-decoration: underline;
  }

header, .grid, footer {
	max-width: 840px;
	margin: 0 auto;
}

.grid {
	display: grid;
	align-items: center;
}

main {
	grid-column: 2/3;
	margin: 1rem;
}

aside {
	width: 20rem;
	position: relative;
	grid-column: 1/2;
	grid-row: 1/2;
}


/* Class Selectors */

.box {
	margin: 1rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 1rem;
	background-color: #26413C;
	color: #F18F01;
}

.box li {
	position: relative;
	left: 20px;
}
