body {
display: grid;
grid-template-columns: 150px auto;
}
h1, h2 {
font-family:  Arial, sans-serif;
color: #EE5500;
background-color: #333333;
display: flex;
justify-content: center;
align-items: center;
}
section p {
font-family: "Comic Sans MS", cursive, sans-serif;
color: #FF3300;
display: flex;
}
section h4 {
font-family: "Comic Sans MS", cursive, sans-serif;
color: #FF3300;
display: flex;
justify-content: center;
align-items: center;
}
h1, h2 {
font-family: "Comic Sans MS", cursive, sans-serif;
}
li {
font-family: "Comic Sans MS", cursive, sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
section img, section table {
border: 10px ridge #00FF00;
}
@font-face {
  font-family: "ancient";
  src: url("../font/ancient.ttf") format("truetype");
}

nav a {
  color: blue;
  text-decoration: none;
}

nav a::before {
  content: "ᐰ";
}

nav a::before {
  content: a;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}

h1::before, h2::before, h1::after, h2::after {
  font-family: "ancient";
  color: #00FF00;
  content: "stargate is the best";
  display: inline-block;
  margin: auto;
  margin-top: 1px;
  margin-bottom: 10px;
}

header, nav, header h1 {
background-color: black;
}
body{
background-color: #222222;
}

footer {
background-color: black;
color: white;
display: flex;
justify-content: center;
align-items: center;
}

table {
color: #FF3300;
background-color: #000000;
margin: auto;
}

table th{
color: #FF5500;
text-align: center;
}
table td {
text-align: center;
}
header {
grid-column-start: 1;
grid-column-end: 3;
grid-row-start:1;
grid-row-end:2;
}
section {
grid-column-start: 2;
grid-column-end: 3;
grid-row-start:2;
grid-row-end:3;
}
section {
background: linear-gradient(180deg,#222222, #101010);
}
nav {
background: linear-gradient(180deg,#000000, #101010);
}
nav {
grid-column-start: 1;
grid-column-end: 2;
grid-row-start:2;
grid-row-end:3;
}
footer {
grid-column-start: 1;
grid-column-end: 3;
grid-row-start:3;
grid-row-end:4;
}

nav a {
color: white;
background-color: black;
display: inline-block;
text-decoration: none;
border: 3px outset lime;
padding: 2px 10px;
width: 90px;
margin: 10px;
}

nav a:hover {
color: black;
background-color: white;
border: 3px outset magenta;
}
nav a:active {
color: orange;
background-color: white;
border: 3px inset yellow;
padding: 0px 5px;
margin: 12px;
}

