body {
  background-color: black;
  background-image: url(../images.img/background.jpg);
  background-repeat: no-repeat;
  background-position: center;
}
nav ul li {
  display: inline;
  text-align: center;
  word-spacing: 50px;
}
nav ul li a {
  font-size: 50px;
  color: black;
  text-decoration: none;
}
nav {
  background-image: url(../images.img/nav.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 100px;
  font-size: x-large;
}
nav ul {
  list-style-type: none; /* this removes bullet points*/
}
.nav-btn{
  float: right;
}
.nav-btn:hover{
  color: red;
}
.dropdown-menu{
  border: 10px solid white;
}
/* Nav CSS ends here*/

.right {
  height: 25%;
  width: 25%;
  display: block;
  flex-direction: column;
  margin-left: 70%;
}
.left {
  height: 25%;
  width: 25%;
  display: block;
  float: left;
  clear: left;
}
#images {
  display: block;
  border: solid 10px black;
  /* min-height: 1000px; */
}
#images img {
  /* margin: 25px; */
  height: 350px;
  width: 420px;
  padding: 10px;
}
footer {
  display: block;
  border: solid rgb(129, 14, 14);
  text-align: center;
  padding: 100px;
  margin-top: 150px;
  background-color: crimson;
}
footer a {
  font-size: large;
  color: black;
  font-weight: bolder;
}
:hover a{
  /* removes underline from links when hovering */
text-decoration: none; 
}