/* Basic body for entire page */
body {
  background-image: url("images/star-background.png");
  background-repeat: repeat;
  font-family: "Lucida Console";
  color: white;
}


/* Header: title, subtitle, gifs */
header {
  background-color: black;
  margin: 20px;
  padding: 20px;
  border-style: dotted;
  border-width: 5px;
  border-color: white;
  text-align: center;
}

.right-image {
  position: absolute;
  top: 70px;
  right: 90px;
  max-width: 100%;
  height: auto;
}

.left-image {
  position: absolute;
  top: 70px;
  left: 90px;
  max-width: 100%;
  height: auto;
}

/* Nav bar list */
nav {
  flex: 100%;
  display: flex;
  background-color: black;
  border-style: dotted;
  border-color: white;
  border-width: 3px;
  margin: 20px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  flex: 2;
  display: flex;
}

nav li {
  display: inline;
  text-align: center;
  flex: 1;
  border-right: 1px solid white;
  padding: 0;
}

.navbar {
  color: white;
  text-decoration: none;
  display: block;
  padding: 15px;
}

.navbar:hover {
  background-color: #124aa3;
}

.navbar:active {
  background-color: #1057c9;
}

/* Main page content */
main {
  float: left;
  margin: 20px;
  padding: 15px;
  background-color: black;
  border-style: dotted;
  border-width: 3px;
  border-color: white;
  line-height: 1.8;
}

h3 {
  text-align: center;
}

aside img {
  border-style: solid;
  border-color: white;
  border-width: 5px;
  max-width: 100%;
  height: auto;
}

.stars {
  border-style: none;
  display: inline-block;
  padding: 0 auto;
  max-width: 100%;
  height: auto;
}