* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Dosis', sans-serif;
  color: #fff;
  font-size: 120px;
  text-align: center;
  height: 100vh;
}

.bg-image img {
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: 0px;
  opacity: 0.5;
  z-index: -1;
}

.logo-text {
  font-size: 60%;
  margin-left: 0.2em;
  display: inline-block;
  float: left;
}

.logo-text p:nth-child(1) {
  font-weight: 400;
}

.logo-text p:nth-child(2) {
  font-size: 40%;
  letter-spacing: 0.082em;
  line-height: 25%;
  font-weight: 300;
}

.soon-text {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 200;
  font-size: 200%;
  color: rgba(255, 255, 255, 0.45);
  line-height: 75%;
}

@media only screen and (max-width : 850px) {
	.soon-text {
		font-size: 100%;
	}
	}
