/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* Page background */
body {
    margin: 0;
    background-image: url("https://wykingsquirrel.neocities.org/images/Dark%20Forest.jpg");
    background-repeat: repeat;
    font-family: "Courier New", Courier, monospace;
}

/* Centered content container with green text */
.content {
    max-width: 900px;
    margin: 40px auto;
    background: #9e896a;
    color: black;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Horizontal Navigation Bar */

.navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
}

.navbar li {
  float: left;
}

.navbar li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar li a:hover {
  background-color: #111111;
}