*{
  box-sizing : border-box;
}

html,body {
  margin:0;
  font-family: 'Varela Round', sans-serif;
  color:#fff;
  background:#333;
  overflow: hidden;
}

.landing {
  position: relative;
  background-image: url('../img/fyj-texture.jpeg');
  background-size:cover;
  background-position: center;
  height:100vh;
}
.landing-inner {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.3);
  text-align: center;
  padding-top:50px;
}
img.logo {
  //transform: translate(-50%);
  float: left;
  padding-left: 5%;
  margin-right: 100%;
  margin-bottom: 20px;
  max-width: 320px;
}
img.coming-soon {
  max-width: 510px;
  position: fixed;
  left: 50%;
  bottom: 20%;
  transform: translate(-50%, -80%);
  margin: 0 auto;
}
.social {
  position: fixed;
  left: 50%;
  bottom: 20%;
  transform: translate(-50%, -20%);
  margin: 0 auto;
}
#mc_embed_signup {
  position: fixed;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%, -20%);
  margin: 0 auto;
}
#mc_embed_signup input#mce-EMAIL {
  border-radius: 5pc;
  display: inline-block;
  border: none;
  margin-top: 5px;
}
#mc_embed_signup input.button#mc-embedded-subscribe {
  background-color: #e40046;
  border-radius: 5pc;
  display: inline-block;
  margin-top: 5px;
  border: none;
}
.landing h1 {
  font-size:50px;
}
.landing p {
  font-size:20px;
}

.fa {
  padding: 20px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  color: white;
}

.countdown {
  font-size:35px;
  display:flex;
  justify-content:center;
  align-items: center;
  text-align:center;
}

.countdown > div {
  //border:1px solid #fff;
  border-left:0;
  border-right:0;
  border-radius:0;
  margin-left:6%;
  margin-right:6%;
  opacity :0.999;
  background :black;
  position: relative;
  display: inline-block;
  width: 10%;
  height: 0;
  padding: 5% 0;
  line-height: 100%
}

.countdown > div::before {
  content: '';
  position:absolute;
  width: 100%;
  height: 100%;
  //border:1px solid #fff;
  border-radius:50% 0 0 50%;
  border-right:0;
  transform: translate(-100%, -50%);
  background:inherit;
  z-index: -1;
}

.countdown > div::after {
  content: '';
  position:absolute;
  width: 100%;
  height: 100%;
  //border:1px solid #fff;
  border-radius:0 50% 50% 0;
  border-left:0;
  transform: translate(0%, -50%);
  background:inherit;
  z-index: -1;
}

.countdown > div > div {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.countdown > div:nth-child(even) {
  background: #EE0B41;
}

.countdown > div:nth-child(odd) {
  background: #C7038E;
}

.countdown span {
  display:block;
  font-size : inherit;
}

@media(max-width:900px) {
  .countdown > div:nth-child(3) {
    //display: none;
  }
  .countdown > div:last-child {
    display: none;
  }
  .countdown {
    font-size:20px;
  }
}

@media(max-width:650px) {
  img.logo {
  	width: 25%;
  }
  img.coming-soon {
    width: 90%;
  }
  .landing h1{
    font-size:40px;
  }
  .countdown {
    //flex-direction: column;
    font-size:15px;
  }

  .countdown > div:not(:first-child) {
    //display: none;
  }

  /*.countdown > div:first-child {
    display: inline-block;
    width: 40%;
    height:10px
    padding: 10px;
  }*/

}

@media (max-height:600px)
{
  img.logo {
    width: 200px;
  }
  img.coming-soon {
  	width: 90%;
  }
  p{
    display: none;
  }

}

@media (max-height:400px)
{
  img.logo {
    margin-bottom: -25px;
  }
  h1 {
    display: none;
  }


}