

body {
  height: 100vh;
  /* background-image: url(bg-sparkle.gif); */
}

.nav-wrapper li:nth-child(3) a {
  font-weight: 500;
}


/* 
=IMAGE GALLERY
==================================*/
.img-gallery {
  width: 100%; height: 100vh;
  display: flex; /* make the image gallery a flex container */
  flex-wrap: wrap; /* control the image gallery's flex behavior */
  margin-left: auto;
  padding: 15px;
  height: fit-content;
}
figure {
    margin: 0;
}

img {
  width: 50%;
  margin: 30px 0 0 0;
  border-radius: 5px;
}



/* 
=DESCRIPTION
==================================*/

.img-gallery p {
  font-size: 13px;
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
}

p span {
  font-weight: 400;
}

p a {
  color: black;
  font-size: 13px;
  line-height: 1.2;
}

p a:hover {
  border-radius: 3px;
  background: magenta;
  color: white;
}


.links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: fit-content;
  padding: 10px 0 10px;
  font-weight: 400;
  border-top: black 1px solid; border-bottom: black 1px solid;
  margin: 30px 0 10px;

}

.links a {
  color: black;
  text-decoration: none;
}

.links a:active {
  color: magenta;
}






/*
FOOTER
=====================*/
.footer {
  margin: auto;
  display: flex;
  flex-direction: column;
  width: 80%;
  bottom: 0;

}

.footer p {
  margin: 30px 0 40px;
  text-align: center;
  font-size: 11px;
  font-weight: 300;
}
/*
mobile
=====================*/
@media (max-width: 767px) {
.subhead-mobile {
  display: flex;
  flex-direction: column;
  width: 45%;
  border-top: black 1px solid;
}

img {
  width: 100%;
  margin: 30px 0 0 0;
  border-radius: 5px;
}

}

@media (max-width: 991.98px) {
  * {
    font-size: 13px;
  }


  .mobile-nav {
    display: inline-block;
  }

  .img-gallery {
    width: 100%;
  }

  div.nav1, div.nav2 {
  display: none;
 }


h1:active a {
  color: magenta;
  }
h1:hover a {
    color: magenta;
    font-weight: 700;
  }

  div.head {
    display: flex;
    flex-direction: column;
    border-left: none;
    border-top: solid 1px black;
    width: 100%;
    margin: 90px 0 0;
    padding: 15px 0 0;
  }
    

}


p.head {
  font-size: 30px;
}

h1:hover {
  background: none;
}