@import url(https://fonts.googleapis.com/css?family=Josefin+Slab:700);
html, body{
    height: 100%;
    margin:0px;
    overflow:hidden;
}

div {
  font-family: 'Josefin Slab', serif;
  font-size:160px;
  position:relative;
}

.black .coming_soon {
  position:absolute;
  bottom: -40px;
}
.white .coming_soon {
  position:absolute;
  top: -8px;
}
.white{
  color:#ffffff;
  background-color:#000000;
  /* width:100%; */
  height:50%;
  padding:0px !important;
}
.black {
  color:#000000;
  background-color:#ffffff;
  /* width:100%; */
  height:50%;
  padding:0px !important;
}

.coming_soon{
  width: 85%;
  margin: auto 0;
  left: 5%;
}

@media screen and (max-width: 767px) {
  .black .coming_soon{
    bottom: -18px;
  }
  .white .coming_soon{
    top: -4px;
  }
  div{
    font-size: 72px;
  }
  
}



.blinking-dots {
  display: inline-block;
}

.blinking-dots span {
  opacity: 0;
  animation: blink 1.5s infinite;
}

.blinking-dots span:nth-child(1) {
  animation-delay: 0s;
}

.blinking-dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.blinking-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes blink {
  0%, 100% {
      opacity: 0;
  }
  50% {
      opacity: 1;
  }
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}