/* worst css ever */
* { margin:0;padding:0;}

body {
    font-family: "Avenir", "Helvetica Neue", "Arial";
    background-color: #aaa;
    overflow: hidden;
    text-align: center;
    color: #ddd;
}

#slideshow > .slide:first-child { z-index:2; }

.slide {
    z-index:1;
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    -webkit-animation-duration: 3.5s;
    -webkit-animation-delay: 3.5s;
    -webkit-animation-timing-function: cubic-bezier(.36,.97,.92,.88);
    -moz-animation-duration: 3.5s;
    -moz-animation-delay: 3.5s;
    -moz-animation-timing-function: cubic-bezier(.36,.97,.92,.88);
    animation-duration: 3.5s;
    animation-delay: 3.5s;
    animation-timing-function: cubic-bezier(.36,.97,.92,.88);
}


@-webkit-keyframes transitionOut {
  0% { opacity: 1; }
  100% { opacity: 0;}
}

@-moz-keyframes transitionOut {
  0% { opacity: 1; }
  100% { opacity: 0;}
}

@keyframes transitionOut {
  0% { opacity: 1; }
  100% { opacity: 0;}
}


h1 {
    font-weight: 500;
    color: #fff;
}
h2 {
    font-weight: 200;
}
a:link {color: #ddd; text-decoration: underline; }
a:active {color: #ddd; text-decoration: underline; }
a:visited {color: #ddd; text-decoration: underline; }
a:hover {color: #ff0000; text-decoration: none; }

#about {
    position: absolute;
    bottom: -235px;
    left: 0;
    right: 0;
    padding: 20px;
    height: 300px;
    z-index: 3;
    background-color: #444;
    opacity: 0.76;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

#about:hover { 
    -webkit-transform: translate3d(0, -235px, 0);
    -moz-transform: translate3d(0, -235px, 0);
    -o-transform: translate3d(0, -235px, 0);
    -ms-transform: translate3d(0, -235px, 0);
}

#about:hover + #slideshow > div { -webkit-filter: blur(10px); }

#about p {
    max-width: 600px;
    margin-top: 1.2em;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5em;
    text-align: center;
}
