@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'future_timesplittersregular';
    src: url('future_timesplitters-webfont.woff2') format('woff2'),
         url('future_timesplitters-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'ferrumextra-condensed';
    src: url('ferrum-webfont.woff2') format('woff2'),
         url('ferrum-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
	background: burlywood;
	color: white;
  font-family: 'ferrumextra-condensed';

}

/* Chrome, Safari, Opera */
@-webkit-keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Standard syntax */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
} 

.img {
  display: block;
    position: absolute;
    text-indent: -99999px;
    background: url("rescue.gif");
    width: 500px;
    height: 400px;
    top: 100px;
    left: 700px;
  opacity: 0;
        -webkit-animation: fadeIn 1s; /* Chrome, Safari, Opera */
        animation: fadeIn 1s;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	    animation-fill-mode:forwards;

}

h1 {
    font-size: 60px;
    position: absolute;
    top: 100px;
    left: 200px;
  text-transform: uppercase;
     text-shadow: -2px 2px 2px black,
				  1px 1px 2px black,
				 1px -1px 2px black;
				-1px -1px 2px black; 
  opacity: 0;
        -webkit-animation: fadeIn 2s; /* Chrome, Safari, Opera */
        animation: fadeIn 2s;
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
        -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	    animation-fill-mode:forwards;
                
                
}

p {
  font-size: 30px;
    position: absolute;
    top: 220px;
  left: 220px;
    padding-right: 700px;
  line-height: 50px;
   text-shadow: -2px 2px 2px black,
				  1px 1px 2px black,
				 1px -1px 2px black;
				-1px -1px 2px black;
  opacity: 0;
        -webkit-animation: fadeIn 3s; /* Chrome, Safari, Opera */
        animation: fadeIn 3s;
        -webkit-animation-delay: 3s;
        animation-delay: 3s;
        -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	    animation-fill-mode:forwards;
}


.right {
  font-size: 40px;
  position: absolute;
  color: white;
  text-decoration: none;
  top: 420px;
  left: 350px;  
  text-transform: uppercase; 
   text-shadow: -2px 2px 2px black,
				  1px 1px 2px black,
				 1px -1px 2px black;
				-1px -1px 2px black;
  opacity: 0;
        -webkit-animation: fadeIn 4s; /* Chrome, Safari, Opera */
        animation: fadeIn 4s;
        -webkit-animation-delay: 4s;
        animation-delay: 4s;
        -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	    animation-fill-mode:forwards;

}

.right:hover {
  background-size: cover;
    -webkit-transform: scale(1.2);
    transform: scale(1.2); 
  color: lightsteelblue;

}

audio {
  position: absolute;
  left: 550px;
  opacity: 50%;
}