* {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

html {
	height: 100%
}

body {
  overflow: hidden;
  background: url(img/sky-sunset-sand-night.jpg) no-repeat center center;
  background-size: cover;
  //background-position: 0% 20%;
}
.body-text {
  text-align: center;
  position: absolute;
  bottom: 54%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: fadein 2s;
  -moz-animation: fadein 2s;
  -ms-animation: fadein 2s;
  -o-animation: fadein 2s;
  animation: fadein 2s;

}
.blog {
  left: 50%;
  transform: translateX(-50%);
  color: white;
  position: absolute;
  //right: 1%;
  bottom: 50%;
  
  animation-delay: 3s; 
  animation-duration: 5s;
  animation-timing-function: ease-out;
  -webkit-animation: flyin-bottom 2s;
  -moz-animation: flyin-bottom 2s;
  -ms-animation: flyin-bottom 2s;
  -o-animation: flyin-bottom 2s;
  animation: flyin-bottom 2s;
  animation-fill-mode: forwards;
}
.social-media {
   margin-left: -50%;
}
a {
  color: black;
}
.social-media-container {
    left: -20%;
    position: absolute;
    top: 50%;
	
    animation-delay: 3s; 
    animation-duration: 5s;
    animation-timing-function: ease-out;
    -webkit-animation: flyin 2s;
    -moz-animation: flyin 2s;
    -ms-animation: flyin 2s;
    -o-animation: flyin 2s;
    animation: flyin 2s;
    animation-fill-mode: forwards;
    
}

i {
 transition: all .2s; 
}

i:hover { transform: scale(1.3); }

i span {
  font-size: 20pt;
//  display: none;
  position: absolute;
  top: 1000px;
  opacity: 0;
  transition: opacity .5s ease-out
}
i:hover span{
  opacity: 1;
  top: 0;
  position: relative;
//  display: inline;
  padding-right: 10px;
 // position: absolute;
}

.title {
  padding-top: 6%;
  font-size: 80pt;
  color: white; 
  display: inline-block;
}
.subtitle {
  padding-top: 10px;
  font-size: 20pt;
  color: lightgray;
  display: inline-block;
}

@keyframes flyin-bottom {
    from { top: 120%; }
    to   {
           top:60%;
         }
}

/* Firefox < 16 */
@-moz-keyframes flyin-bottom {
    from { top: -20%; }
    to   {
           top:65%;
         }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes flyin-bottom {
    from { top: -20%; }
    to   {
           top:65%;
         }
}

/* Internet Explorer */
@-ms-keyframes flyin-bottom {
    from { top: -20%; }
    to   {
           top:65%;
         }
}

/* Opera < 12.1 */
@-o-keyframes flyin-bottom {
    from { top: 120%; }
    to   {
           top:65%;
         }
}
@keyframes flyin {
    from { left: -20%; }
    to   {
           left:50%;
         }
}

/* Firefox < 16 */
@-moz-keyframes flyin {
    from { left: -20%; }
    to   {
           left: 50%;
          // margin-left: -50%;
         }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes flyin {
    from { left: -20%; }
    to   {
           left: -50%;
         }
}

/* Internet Explorer */
@-ms-keyframes flyin {
    from { left: -20%; }
    to   {
           left: -50%;
         }
}

/* Opera < 12.1 */
@-o-keyframes flyin {
    from { left: -20%; }
    to   { 
	   left: -50%;
	 }
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }

}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
