/*
 * Globals
 */
@font-face {
    font-family: "Yanone Kaffeesatz";
    src: url("../fonts/YanoneKaffeesatz-Regular.ttf") format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Yanone Kaffeesatz";
    src: url("../fonts/YanoneKaffeesatz-Bold.ttf") format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

*:focus {outline:none !important}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: #fff;
  border: .05rem solid #fff;
}


/*
 * Base structure
 */

html {
  background-color: #000;
}

body {
  height: 100%;
  background-color: transparent;
}

h1 {
  margin:0;
  padding-top:15px;
  font-family: 'Yanone Kaffeesatz', cursive;
  font-size:50px;
  font-weight: bold;
}

h2 {
  margin:0;
  padding-top:15px;
  font-family: 'Yanone Kaffeesatz', cursive;
  font-size:30px;
  font-weight: bold;
}

h3 {
  margin:0;
  padding-top:15px;
  font-family: 'Yanone Kaffeesatz', cursive;
  font-size:30px;
  font-weight: bold;
}

h4 {
  margin:0;
  padding-top:15px;
  font-family: 'Yanone Kaffeesatz', cursive;
  font-size:50px;
  font-weight: bold;
}

h5 {
  margin:0;
  padding-top:10px;
  font-family: 'Yanone Kaffeesatz', cursive;
  font-size:26px;
  text-align: justify;
  color:yellow;
  line-height: normal;
}

.description {
  margin:0;
  padding-top:10px;
  font-family: 'Yanone Kaffeesatz', cursive;
  font-size:23px;
  text-align: justify;
  color:yellow;
  line-height: normal;
}

h6 {
  margin:0;
  padding-top:10px;
  font-family: 'Yanone Kaffeesatz', cursive;
  font-size:20px;
  text-align: justify!important;
  color:white;
  line-height: normal;
}

 @media (min-width: 640px) {
  body {
    height: 100%;
    background: url(../img/background_l2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: top;
    background-position-x: center;
    background-size: 900px;
    background-attachment: fixed;
    background-color:#000;
 }

} 

@media (max-width: 640px) {
  body {
    height: 100%;
    background: url(../img/background_p.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    background-position-y: 0px;
    background-color:#000;
  }

}

body {
  color: #fff;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  width:100%;
} 



hr {
  border-color:Gray;
  width:100%;
  padding-bottom:10px;
}

.logo {
	max-height:40px;
}

.cover-container {
  max-width: 60em;
}


/*
 * Header
 */
.masthead {
  margin-bottom: 2rem;
}

.masthead-brand {
  margin-bottom: 0;
}

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: yellow;
  border-bottom-color: yellow;
}

@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}


/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}


/*
 * Footer
 */
.mastfoot {
  color: rgba(255, 255, 255, .5);
}

.inner {
  font-size:13px;
  position: relative;
}

/* Masonry grid */
.masonry {
  transition: all .5s ease-in-out;
  column-gap: 30px;
  column-fill: initial;
  margin-top: 20px;
  background-color: transparent;
}

/* Masonry item */
.masonry .brick {
  margin-bottom: 30px;
  display: inline-block; /* Fix the misalignment of items */
  vertical-align: top; /* Keep the item on the very top */
  position: relative;
}

/* Masonry image effects */
.masonry .brick img {
  transition: all .5s ease-in-out;
  backface-visibility: hidden; /* Remove Image flickering on hover */
  min-width:200px;
}

.masonry .brick .title {
  position: absolute;
font-family: 'Yanone Kaffeesatz', cursive;
  font-size: 32px;
  font-weight:bold;
  margin: 0px 0px 10px 0px;
  top:10px;
  right:10px;
  color:yellow;
}

.masonry .brick .category {
  position: absolute;
  font-family: 'Yanone Kaffeesatz', cursive;
  font-size: 19px;
  width:100%;
  margin: 0px;
  padding: 5px 0px 0px 0px;
  bottom:0px;
  left:0px;
  color:black;
  background-color: yellow;
  opacity:.75;
}

.masonry .brick:hover img {
  opacity: .75;
}

/* Bordered masonry */
.masonry.bordered {
  column-rule: 1px solid #eee;
  column-gap: 50px;
}

.masonry.bordered .brick {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
}

/* Gutterless masonry */
.masonry.gutterless {
  column-gap: 0;
}

.masonry.gutterless .brick {
  margin-bottom: 0;
}

/* Masonry on tablets */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .masonry {
    column-count: 2;
  }
}

/* Masonry on big screens */
@media only screen and (min-width: 1024px) {
  .desc {
    font-size: 1.25em;
  }

  .intro {
    letter-spacing: 1px;
  }

  .masonry {
    column-count: 3;
  }
}


img, video {
  max-width: 100%;
  vertical-align: middle;
}

.blur {
  background-color: black;
  -webkit-filter: blur(15px) brightness(0.0); 
  filter: blur(15px) brightness(0.0);
}
