* {
  box-sizing: border-box;
}

body {
  background-color: black;
  background-image: url("gradbg.png");
  background-repeat: repeat-x;
  color: white;
  font-family: "Times New Roman";
}

a:link {
  color: lightblue;
}

a:visited {
  color: blue;
}

header {
  color: white;
  padding: 100px;
  text-align: center;
  background-image: url("boowordartbanner.png");
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: center; 
/*  background-image: linear-gradient(#ff4d4d, black);*/ /*made this into an bg image instead but keeping here as ref for color*/
}

/*#banner {
  background-image: url("boowordartbanner.png");
}
*/

nav {
  overflow: hidden;
  background-color: black;
  font-family: Impact;
  font-size: 2em;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav li {
  display: inline;
}

nav a:link, a:visited {
  color: white;
  padding: 14px 25px;
  text-decoration: none;
  display: inline-block;
}

nav a:hover, a:active {
  background-color: #f44336;
}

p {
  display: block;
}

.content {/*commented out stuff to make it boxed in i felt was too constricting*/
  /*background-color: #1a1a1a;*/
  max-width: 500px;
  margin: auto;
  padding: 40px;
  /*border: 5px solid gray;
  border-style: outset;*/
}

.content a:link {
  color: fuchsia;
}

.content a:visited {
  color: mediumorchid;
}

.content a:hover {
  color: white;
}

.changelog {
  width: 250px;
  height: 150px;
  padding-left: 15px;
  margin-left: 15px;
  float: right;
  overflow-y: scroll;
  border: 1px solid white;
}

footer {
  background-color: black;
  color: white;
  padding: 10px;
  text-align: center;
}