html,
body {
  background-color: #68b7bf;
  font-family: 'Sarala', sans-serif; 
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}


body h2, body h3, body h4, body h5, body h6 {
  font-family:'Cabin Condensed', sans-serif;
}

footer {
	color: whitesmoke !important;
}


* {
  /*position: relative;*/
}

.frame {
  width: 500px;
  height: auto;
  margin: 15% auto 0;
  position: absolute;
  width: 100%;
}

svg {
  max-width: 100%;
  height: auto;
  display: block;
}


/**
 * Clouds
 */
.clouds {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transform: translateZ(0);



	z-index: -9999 !important !important;
	/* [disabled]z-index: -99 !important; */
}

.cloud {
  position: absolute;
  top: 20%;
  width: 300px;
  right: 0;
  opacity: 1;
}

.cloud.front {
  z-index: 9;
}

.cloud.distant {
  z-index: 1;
}

.cloud.background {
  z-index: 1;
}

/*Cloud Sizing*/
.cloud.smaller {
  margin-right: 400px;
  width: 100px;
  margin-top: 50px;
}

.cloud.small {
  margin-right: 200px;
  width: 150px;
}

.cloud.big {
  width: 500px;
  margin-top: 50px;
  margin-right: 150px;
}

.cloud.massive {
  width: 600px;
  margin-top: 20px;
  margin-right: 0px;
}


/*Cloud: Animation*/
.cloud {
  -webkit-animation-name: cloud-movement;
  -webkit-animation-timing-function: linear;
  -webkit-animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
  
  -moz-animation-name: cloud-movement;
  -moz-animation-timing-function: linear;
  -moz-animation-direction: forwards;
  -moz-animation-iteration-count: infinite;
  -moz-animation-duration: 30s;

  animation-name: cloud-movement;
  animation-timing-function: linear;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

.slow {
  -webkit-animation-duration: 49.2s;
  -moz-animation-duration: 49.2s;
  animation-duration: 49.2s;
}

.slower {
  -webkit-animation-duration: 111.2s;
  -moz-animation-duration: 111.2s;
  animation-duration: 111.2s;
}

.slowest {
  -webkit-animation-duration: 143.5s;
  -moz-animation-duration: 143.5s;
  animation-duration: 143.5s;
}

.super-slow {
  -webkit-animation-duration: 270.5s;
  -moz-animation-duration: 270.5s;
  animation-duration: 270.5s;
}

@-webkit-keyframes cloud-movement {
  0% {
    opacity: 0.1;
    -webkit-transform: translateX(300px);
    -moz-transform: translateX(300px);
    transform: translateX(300px);
  }
  10% {

    opacity: 0.7;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-1000px);
    -moz-transform: translateX(-1000px);
    transform: translateX(-1000px);
  }
}
