body {
  background-color: black;
  opacity: 0;
  transition: 1.1s ease-in;
}
.demo {
  opacity: 75%;
  position: absolute;
  margin-top: 10px;
  padding: 10px 20px;
  font: italic 800 1vw Muli, san-serif
}
#bgimg {
  position: relative;
  bottom: -200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.btn {
  font: italic 800 1vw Muli, san-serif;
  color: black;
}
.row.topmenu {
  display: flex;
  align-items: center;
}
a.links {
  font: italic 800 1vw Muli, san-serif;
  color: black;
  padding-left: 10px;
}
a.links:hover {
  color: #996633;
  text-decoration: none;
  cursor: pointer;
}
.content {
    position: relative;
    max-width: 95%;
    margin: auto;
  }     
.wordCarousel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
a.active {
  color: gold;
}
.row {
  margin-top: 16px;
  text-align: center;
}
.body .row {
  text-align: center;
}
#avatar {
  border-radius: 50%;
  margin-top: 2%;
}
#biography {
  margin-top: 15px;
}
.linkicons {
  margin-top: 15px;
  letter-spacing: 10px;
}
.col-sm-3 {
  position: absolute;
}
.logo {
  max-width: 80%;
  padding-top: 0;
}
.sidenav, .row.sidemenu {
  display: none;
}
.page-nav {
  margin-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-nav a {
  color: black;
}
.page-nav a.active {
  color: gold;
}
.page-nav a:hover {
  color: gold;
}
/* Next & previous buttons */
.viewer-control .prev, .viewer-control .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 1%;
  color: white;
  font-weight: bold;
  font-size: 2vw;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  border: 1px solid
}
.viewer-control .prev {
  position: absolute;
  left: 15px;
}
.viewer-control .next {
  right: 15px;
  border-radius: 3px 0 0 3px;
}
/* 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);
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media only screen and (max-width: 768px) {
  .row.topmenu {
    display: none;
  }
  .row.sidemenu {
    display: flex;
    align-items: center;
  }
  .row.sidemenu .logo {
    max-width: 15%;
    margin: auto;
  }
  .sidenav {
    width: 0;
    position: fixed;
    background-color: #eee;
    height: 100%;
    z-index: 1;
    overflow-x: hidden;
    top: 0;
    transition: width 0.5s;
    display: block;
  }
  /* On mouse-over */
  .sidenav a:hover, .dropdown-btn:hover {
    color: #ffc107;
  }
  .dropdown-container {
    display: none;
    background-color: #262626;
    padding-left: 8px;
  }
  /* Style the sidenav links and the dropdown button */
  .sidenav a, .dropdown-btn {
    /*padding: 6px 8px 6px 16px;*/
    font: italic 800 1vw Muli, san-serif;
    text-decoration: none;
    font-size: 20px;
    display: block;
    border: none;
    background: none;
    width:100%;
    text-align: left;
    cursor: pointer;
    outline: none;
  }
  .sidenav .links{
    display: block;
    margin-top: 50px;
    padding-left: 20px;
    width: 100%;
    font-size: 18px
  }
  .overlaymenu {
    width: 60%;
  }
  .openbt {
    float: left;
    margin-left: 30px;
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
    font-size: 24px;
  }
  .closebt {
    float: right;
    margin-right: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.5s;
    border: none;
    outline: none;
    background-color: transparent;
  }
  .activateclosebt {
    transform: translateY(0);
    opacity: 1;
  }
  #avatar {
    transform: scale(0.75, 0.75);
  }
  #exhibitHeader {
    font-size: 5vw;
  }
  a.active {
    color: gold;
  }
  a {
    color: #818181; 
  }