.header {
    background-color: black;
    padding-left: 0;
    padding-right: 0;
}

body {
    font-family: Impact;
}

h1 {
    padding: 3%;
    color: #d8dadb;
    text-align: center;
    font-size: 4rem;
}

.navbar-light {
    background-color: #d8dadb;   
}

.navbar-nav {
    display: flex; 
    justify-content: space-around;
    width: 100%;
}

.nav-item {
    font-size: 1.4rem;
}

img {
    margin: 5px;
    border: 5px;
    border-color: #d8dadb;
    border-style: solid
}

p {
    font-family: serif;
    text-align: center;
}

h2 {
    text-align: center;
    margin-top: 10px;
}

.footer {
    background-color: black;
}
.footer p {
    color: #d8dadb;
    font-family: serif;
    margin-left: 25px;
}

/* Lightbox*/
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,.7);
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 60%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
    display: none;
}

.full-image {
    width: 99%;
}

.cursor {
    cursor: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}