$color-primary: #ff6213;

// Media Queries breakpoints
$small: 480px;
$medium: 768px;
$large: 992px;
$x-large: 1200px;

$min-height: 700px;

body {
  background: url('https://res.cloudinary.com/jasonheecs/image/upload/v1480353347/construction/bg.jpg');
  font-family: 'Roboto', sans-serif;
}



#title{
  text-align: center;
}

#subtitle{
  text-align: center;
}

#message{
  text-align: left;
  font-family: "Gill Sans Extrabold", sans-serif;
}

main {
  display: flex;
  position: absolute;
  left: 0;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.scene,
.layer {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.scene {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  list-style-type: none;
}

.layer {
  position: absolute;
}

.content {
  position: relative;
  padding: 20px;
  font-size: 1rem;

  @media screen and (min-width: $medium) {
    top: 10%;
    left: 15%;
  }

  @media screen and (min-width: $large) {
    top: 18%;
  }
}

.rocket,
.cloud-back,
.cloud-front {
  position: relative;
  width: auto;
  text-align: right;
}

.cloud-back-left,
.cloud-front-left {
  position : relative;  
  width: auto;
  text-align: left;
}

.cloud-front-left {
  bottom: -85vh;

  @media screen and (min-height: $min-height) {
    bottom: calc(-98vh + 55px);
  }

  @media screen and (min-width: $medium) and (min-height: $min-height) {
    bottom: calc(-85vh + 132px);
  }
}

.cloud-back-left {
  bottom: -75vh;

  @media screen and (min-height: $min-height) {
    bottom: calc(-98vh + 87px);
  }

  @media screen and (min-width: $medium) and (min-height: $min-height) {
    bottom: calc(-85vh + 182px);
  }
}


.cloud-front {
  bottom: -85vh;

  @media screen and (min-height: $min-height) {
    bottom: calc(-98vh + 55px);
  }

  @media screen and (min-width: $medium) and (min-height: $min-height) {
    bottom: calc(-85vh + 132px);
  }
}

.cloud-back {
  bottom: -75vh;

  @media screen and (min-height: $min-height) {
    bottom: calc(-98vh + 87px);
  }

  @media screen and (min-width: $medium) and (min-height: $min-height) {
    bottom: calc(-85vh + 182px);
  }
}

.rocket {
  bottom: calc(-20vh);

  @media screen and (min-height: $min-height) {
    bottom: calc(-100vh + 330px);
  }

  @media screen and (min-width: $small) and (min-height: $min-height) {
    bottom: calc(-95vh + 400px);
  }

  @media screen and (min-width: $medium) and (min-height: $min-height){
    bottom: calc(-85vh + 600px);
  }
}

.footer {
  position: absolute;
  bottom: -5%;
  left: -100%;
  width: 300%;
  height: 15vh;
  background: $color-primary;
  z-index: -1;

  @media screen and (min-width: $small) {
    height: 25vh;
  }

  @media screen and (min-width: $medium) {
    bottom: -25vh;
    height: 50vh;
  }

  @media screen and (min-width: $large) {
    bottom: -15vh;
    height: 50vh;
  }
}

.social {
  position: absolute;
  top: 10px;
  right: 5%;
  color: #999;
  text-transform: uppercase;
}

.social__link {
  display: inline-block;
  margin-left: 10px;

  img {
    vertical-align: middle;
  }
}



