:root {
  --img-sg-width: 350px;
}

html, body {
  padding: 0;
  margin: 0;
}
    
body {
  background-color: #1F1E23;
  background: url('./assets/img/bg_1.jpg');
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Source Sans Pro', sans-serif;
}

.font-pacifico {
    font-family: 'Pacifico', cursive;
}

a {
  color: #FFFFFF;
  text-decoration: none;
  
  opacity: 1;
  transition: 0.3s;
}
a.red {
  color: #cc3300;
}

a:hover {
  opacity: 0.5;
}

h1 {
  font-weight: 300;
}


#header {
  position: sticky;
  top: 0px;
  z-index: 99;
  padding: 30px 0;
  padding-bottom: 10px;
  width: 40%;
  color: #FFFFFF;
  text-align: center;

}

#content {
  position: relative;
  z-index: 2;
  padding: 30px 0;
  width: 60%;
  color: #FFFFFF;
}

#content .nav {
  padding: 30px;
  line-height: 26px;
  width: calc(80% - 60px);
  
  text-align: right; 
}

#content .text {
  padding: 100px 120px 0px 120px;
  line-height: 26px;
}

.gallery {
  width: var(--img-sg-width);
}

.gallery .break {
  clear: both;
  margin-bottom: 5px;
}

.gallery .album {
  position: relative;
  width: var(--img-sg-width);
  
  transition: 0.3s;
}

.gallery .album a:hover {
  opacity: 1;
}

.gallery .album.margin {
  margin-right: 0.3%;
}
  
.gallery .album .title {
  position: absolute;
  display: block;
  bottom: 32px;
  padding: 10px 30px;
  width: calc(100% - 60px);
  color: #FFFFFF;

  font-size: 160%;
  font-weight: 100;

  text-align: right;
  transition: 0.6s;
}

.gallery .album .slogan {
  position: absolute;
  display: block;
  bottom: 5px;
  padding: 10px 30px;
  width: calc(100% - 60px);
  color: #FFFFFF;

  font-size: 80%;
  font-weight: 300;

  text-align: right;
  text-transform: uppercase;
  transition: 0.6s;
}
  
.gallery .album .line {
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: #ffffff;
  bottom: 37px;
  display: block;
  right: 25px;
  transition: 0.6s;
}



.gallery .album .description {
  position: absolute;
  opacity: 0;
  bottom: 0px;
  right: 25px;
  
  color: #FFFFFF;
  font-size: 90%;
  font-weight: 100;
  
  transition: 0.6s;
}

.gallery .album img {
  width: var(--img-sg-width);
  opacity: 1;
  transition: 0.6s;
}

.gallery .album:hover .title {
  bottom: 45px;
  padding: 10px 40px;
  width: calc(100% - 80px);


  font-size: 200%;

}

.gallery .album:hover .slogan {

  bottom: 100px;
  opacity: 0;
}

  
.gallery .album:hover .line {
  bottom: 120px;
}
  
.gallery .album:hover img {

}

.gallery .album:hover .description {

  bottom: 20px;
  opacity: 1;

}
  

#footer {
  position: fixed;
  z-index: 99;
  right: 0;
   bottom: 0px;
   width:40%;
   height:30px;
   line-height: 30px;
   
   color: #575761;
   font-size: 12px;
   text-align: center;
}


@media only screen and (max-width: 600px) {
  #header {
    position: relative;
    top: 0px;
    z-index: 99;
    padding: 30px 20px;
    padding-bottom: 10px;
    width: calc(100% - 40px);
    color: #FFFFFF;
    text-align: center;
  }
  
  #content {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
    width: calc(100% - 40px);
    color: #FFFFFF;
  }
  
 
 #content .text {
  padding: 100px 20px 0px 20px;
  line-height: 26px;
}
  
}