body {
  background-color: #001a00;
  color: lightgray;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  text-align: center;
}

.navbar {
  padding: 0;
}

.nav-list {
  list-style: none;
  margin: 5px;
  padding: 5px;
  display: flex;
  justify-content: space-around;
  border: 5px solid darkgray;
  border-radius: 6px;

}

a {
  text-decoration: none;
  color: lightgray;
  font-weight: bold;
  font-size: 18px;
}

.nav-list a:hover {
  transition: color 0.8s ease;
  color: DarkSeaGreen;
}

.current-page {
  color: DarkSeaGreen;
}

h1 {
  color: darkseagreen;
}

p {
font-style: italic;
}

footer {
font-weight: bold;
}

.business-information {
  font-size: 10px;
}

@media screen and (min-width: 600px) {
body {
  background-color: #001a00;
  color: lightgray;
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  text-align: center;
}


.navbar {
  padding: 10px;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.nav-list {
  margin: 10px;
  padding: 10px;
  display: flex;
  justify-content: space-around;
  border: 5px solid darkgray;
  border-radius: 12px;
}

a {
  text-decoration: none;
  color: lightgray;
  font-weight: bold;
  font-size: 18px;
}

.nav-list a:hover {
  transition: color 0.8s ease;
  color: DarkSeaGreen;
}

.current-page {
  color: DarkSeaGreen;
}

h1 {
  color: darkseagreen;
}

p {
font-style: italic;
}

footer {
font-weight: bold;
}

.business-information {
  font-size: 10px;
}

}