body {
  margin:0;
  padding: 0;
  background: #fff;
}
.container {
  position: relative;
  width: 100%;
  height: 90vh; 
}

a {
	text-decoration: none !important;
	color:#CF930E;
}

.text {
	position: fixed;
	top:36vw;
	width:100%;
	font-family: "bebas-neue-pro", sans-serif;
	font-weight: 300;
	font-style: normal;
	text-align: center;
	font-size:26px;
	line-height:36px;
	
}
.logo {
	position: fixed;
	top:10vw;
	left:40vw;
	right:40vw;
	width:20vw;
}

.star {
  position: fixed;
  background: #CF930E;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  top:15vw;
  left: 51%;
  box-shadow:
    0 0 20px 15px #CF930E;
  animation: twinkle 2s infinite
}
@keyframes twinkle {
  0% {
    box-shadow: 0 0 20px 5px #CF930E;
  }
  50% {
    box-shadow: 0 0 30px 5px #CF930E;
  }
 
}

@media only screen and (max-width: 1200px) {
.star {
	top:17vw;
} 
.text {
	top:50vw;
	font-size:25px;
	line-height:35px;	
}
.logo {
	top:10vw;
	left:36vw;
	right:36vw;
	width:28vw;
}
}

@media only screen and (max-width: 768px) {
.star {
	top:22.3vw;
} 
.text {
	top:78vw;
	font-size:22px;
	line-height:30px;	
}
.logo {
	top:10vw;
	left:25vw;
	right:25vw;
	width:50vw;
}
}