* {
    background-color: black;
    color: white;
    list-style-type: upper-roman;
}

.gridContainer {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 10px auto 150px;
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    background-color:black;
}

@media (max-width: 1450px) {
    .gridContainer {
        display: block;
    }
    .showList {
        text-align: center;
    }
    .showList ul {
        display: inline-block; 
        text-align: left; 
    }
    a.next {
        right: 1%;
    }
}

@media (max-width: 768px) {
    
    .menuItem6 a.icon{
        float: right;
        display: block;
  }
}

.menuItem1 { grid-area: 1 / 3 / 2 / 5; }
.menuItem2 { grid-area: 1 / 5 / 2 / 7; }
.menuItem3 { grid-area: 1 / 7 / 2 / 9; }
.menuItem4 { grid-area: 1 / 9 / 2 / 11; }
.menuItem5 { grid-area: 1 / 11 / 2 / 13; }
.content { grid-area: 2 / 3 / 5 / 9; }
.showList { grid-area: 2 / 9 / 5 / 12; }
.links { grid-area: 5 / 5 / 6 / 9; }
.vidContent{ grid-area: 2 / 3 / 7 / 9; }

.links li {
    list-style-type: none;
    display: inline;
}

a {
    text-decoration: none;
}

a:link {
   color: white;
}

a:visited {
    color:white;
}

a:hover {
    color: darkcyan;
}


/* Image gallery CSS */
/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 33%;
  border-radius: 3px 0 0 3px;
}

.prev {
    left:inherit;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 10%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

/* Dropdown CSS */
.dropdown {
  display: grid;
  position: relative;
  display: inline-block;
  background-color: black;
  color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
  background-color: black;
  color: white;
}

.menuItem6 {
  display: none;
}

.photoTitle {
    position: relative;
    left: 50%;
    font-weight: bold;
}