* {
  padding: 0;
  margin: 0;
}
.title {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  z-index: 999;
  width: 50%;
}

@media (max-width:768px) {
	.title {
		width: 90%;
	}
}

@media (max-width:1400px) {
	.title {
		width: 75%;
	}
}

.main-area{
  /*background: linear-gradient(to bottom right, #4b28a8, #de4b9c);*/
  background: linear-gradient(to bottom right, #fc5b00, #f09400);
  width: 100%;
  height: 100vh;
}
.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@keyframes animate {
  0% {
    opacity:1;
    border-radius: 25;
    transform: translateY(0) rotate(0deg);
  }
  100% {
    opacity: 0;
    border-radius: 100%;
    transform: translateY(-200vh) rotate(720deg);
  }
}

.circles div {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  bottom: -150px;
  animation: animate 25s linear infinite;
}

.circles div:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles div:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles div:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles div:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles div:nth-child(5) {
  left: 65%;
  width: 40px;
  height: 40px;
  animation-delay: 0s;
}

.circles div:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles div:nth-child(7) {
  left: 30%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
  animation-duration: 12s;
}

.circles div:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles div:nth-child(9) {
  left: 20%;
  width: 25px;
  height: 25px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles div:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

.countdown td {
	font-size: 2rem;
	font-weight: 600;
}

@media (max-width:768px) {
	.countdown td {
		font-size: 1.5rem;
		font-weight: 600;
	}
	.countdown th {
		font-size: 0.8rem;
	}
}

.btn-rox {
	background-color: #4b28a8; 
	border-color: #4b28a8;
}

.btn-green {
	background-color: #002211; 
	border-color: #002211;
}


.workingImage {
	background-image: url('../img/working.png');
	background-position: center center;
	background-size: cover;
	height: 500px;
	width: 100%;
	visibility: block;
}

@media (max-width:768px) {
	.workingImage {
		visibility: hidden;
		height: 0px;
	}
}