h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
}
p, div {
  font-family: 'Open Sans', sans-serif;
}
body {
  background-color: black;
}

.background-cell {
  background: url('../assets/background/background.gif') no-repeat center center fixed;
  background-color: black;
  
  position: fixed;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
  
  -webkit-filter: blur(5px) brightness(0.7);
  -moz-filter: blur(5px) brightness(0.7);
  -o-filter: blur(5px) brightness(0.7);
  -ms-filter: blur(5px) brightness(0.7);
  filter: blur(5px) brightness(0.7);
}


.content-main-container {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px;
  background-origin: content-box;
  text-shadow: 2px 2px 2px #000000;
  font-size: 110%;
  line-height: 28px;
}


/* grid content */

/* make this the absolute sized container for the image and text to be inset in */
.content-card-wrapper{
    max-width: 256px;
    height: 256px;
    float: none;
    margin: 0 auto;
    overflow:hidden;
}


/* give padding to each cell to separate the entries */
.custom-column{
    padding: 30px;
}

.thumbnailImage{
    transition: -webkit-transform 200ms cubic-bezier(0.175,0.885,0.32,1.275);
}

.transparent-image-cover{
    position:absolute;
    top:0;
    left:0;
    right: 0;
    bottom:0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 8;
    transition: -webkit-transform 200ms cubic-bezier(0.175,0.885,0.32,1.275);
}

.content-entry-card{
    position:relative;
}

/* make the card entry target the image transition */
.content-entry-card:hover > .thumbnailImage {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.content-entry-card:hover > .transparent-image-cover {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: opacity;
    -moz-transition: opacity;
    -ms-transition: opacity;
    -o-transition: opacity;
    transition: opacity;
}

/* the wrapper around the actual title text */
.absoluteTitleBar{
    position: absolute;
    z-index: 10;
    bottom: 20px;
    width:60%;
}



/* the title text */
.content-title {
  position: relative;
  display: inline-block; 
  color: white;
  padding-left: 4px;
  padding-right: 4px;
  text-align: left;
  /*font-size: 130%;*/
  font-weight: bold;
  
}

/* modal content */

#GalleryCarousel{
    margin: auto;
}

.carousel-inner{
    width: 100%;
    height: 100%;
}

.item{
    width:100%;
    height:100%;
}

#modalTitle{
  background-color: rgba(255, 255, 255, 1.0);
  display: inline-block; 
  color: black;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 150%;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
}

#modalContent{
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 4px;
  padding-right: 4px;
}

#videoFrame {
    display: block;
}

#GalleryImage{
    width:auto;
    height:320px;
}

.carousel-control .glyphicon-arrow-left, 
.carousel-control .glyphicon-arrow-right {
    display: inline-block;
    position: absolute;
    top: 50%;
    z-index: 5;
}


/* navbar */

.info-name {
  position: relative;
  font-size: 200%;
  text-shadow: 2px 2px 2px #000000;
  padding-left: 16px;
  bottom: 0;
}

.info-links {
  font-size: 150%;
  color: lightgrey;  
  padding-left: 16px;
}

#topnavbar {  
  margin-right:30px;
}

#topnavbar2 {  
  margin-right:30px;
}

.navbar-static-top{
    background-color: rgba(0, 0, 0, 0.5);
}