a, a:hover, a:visited, a:active {
  color: inherit;
  text-decoration: none;
 }

.button{
  display: block;
  width: auto;  
  height: auto;
  line-height: 100%;
  padding:20px;
  font-size: 5vw;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  text-decoration: none;
  color: #FFF;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  box-shadow: 0 0 10px rgba(0,0,0,0.8);
  border: 1px solid #FFF;
  letter-spacing: 3px;
  text-align: center;
  position: relative;
  transition: all .35s;
	z-index: 2;
}

.button span{
  position: relative;
}

.button:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);;
  transition: all .35s;
	z-index: 1;
}

.button:hover{
  color: #fff;
}

.button:hover:after{
  width: 100%;
}

/*-- SOCIAL --*/

.social{
  color: #FFF !important;
 font-size: 120px !important;
 line-height: 200% !important;
 text-align: center !important;
 text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

/*-- SLIDESHOW --*/

.slideshow {
  list-style-type: none;
	font-family: 'Cinzel', serif;
}

/** SLIDESHOW **/
.slideshow,
.slideshow:after { 
    top: -16px; /*Not sure why I needed this fix*/
		position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: 0; 
}

.slideshow li span { 
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    color: trasparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 30s linear infinite 0s 

}



.slideshow li:nth-child(1) span {
    background-image: url(background/stramonium.jpg);
}
.slideshow li:nth-child(2) span {
    background-image: url(background/flower.jpg);
    animation-delay: 6s;
}
.slideshow li:nth-child(3) span {
    background-image: url(background/skull.jpg);
    animation-delay: 12s;
}
.slideshow li:nth-child(4) span {
    background-image: url(background/snail.jpg);
    animation-delay: 18s;
}
.slideshow li:nth-child(5) span {
    background-image: url(background/bird.jpg);
    animation-delay: 24s;
}


@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: ease-in; }
    8% { opacity: 1; animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}


@keyframes titleAnimation { 
    0% { opacity: 0 }
    8% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}

.no-cssanimations .cb-slideshow li span {
	opacity: 1;
}

  /* ------------------------ KEN BURN FX -------------------------- */


