body{
  overflow: hidden;
  height: 100vh;
  font-family: "Montserrat", sans-serif;
}
.container-lg {
  height: 30vh;
  width: 50%;
  display: block;
  margin: 0 auto;
  text-align: center;
}

header.masthead {
  width: 100%;
  height: auto;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  //background: no-repeat center center;
  margin-bottom: 50px;
}

.file-link-bar {
  display: flex;
  flex-direction:  row;
  width: 100%;
  justify-content: center;
}

.file-link {
  text-align: center;
  margin-right: 6px;
  flex-grow: 1;
}

#loading-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFAFA;
  text-align: center;
  z-index: 10000;
}
#loading-screen p {
  font-size: 2em;
  padding-top: 25%;
}

.infoBar{
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);

}

.infoBar-content {
  background-color: #FCFCFC;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  height: 80%;
  overflow: hidden;
  animation-duration: 1.5s;
  animation-name: slideUpWide;
}

@media only screen and (max-width: 700px){
  body{
    overflow: hidden;
    height: 90vh;
  }
  .infoBar-content {
    background-color: #FCFCFC;
    margin: 20% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    height: 80%;
    overflow: hidden;
    font-size: 1em;
    animation-duration: 1.5s;
    animation-name: slideUp;
    //animation-name: slideSide;
  }
  .infoBar-content img{
    display: block;
    max-width: 80%;
    max-height: 40%;
    margin: 0 auto;
    padding: 10px;
  }
  .center-iframe {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    max-height: 50%;
  }
}

.infoBar-content img{
  display: block;
  max-height: 60%;
  margin: 0 auto;
  padding: 10px;
}

.center-iframe {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  max-height: 50%;
}

.closeButton {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.closeButton:hover,
.closeButton:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.dropdown-hover {
  cursor: default;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFAFA;
  min-width: 160px;
  max-width: 600px;
  right: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 2;
}

.dropdown-hover:hover .dropdown-content {
  display: block;
}

.dropdown-hover-text {
  cursor: default;
}

@keyframes slideSide {
  from {
    margin-left: 100%;
    width: 300%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}

@keyframes slideUp {
  from {
    margin: 100% auto;
  }
  to {
    margin: 20% auto;
  }
}

@keyframes slideUpWide {
  from {
    margin: 100% auto;
  }
  to {
    margin: 5% auto;
  }
}
