html, body {
  background-color: #22252a;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #8a8d93;
  height: 100%;
  margin: 0;
}

.bg-image {
  background-image: url("/images/background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}

.bg-image:hover {
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -ms-filter: blur(0px);
  filter: blur(0px);
}

.color-main {
  color: #9C8E14;
}

a {
  color: #9C8E14;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
}

a:hover, a:focus {
  text-decoration: none;
  color: #E2CF21;
}

.bg-color {
  background-color: #292c31e6;
}

.comingSoonCtn {
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.comingSoonCtn h1 {
  font-size: 4.5rem;
}

.comingSoonCtn .bg-color {
  -webkit-box-shadow: 0px 0px 5px #000;
          box-shadow: 0px 0px 5px #000;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.comingSoonCtn .socialMediaBox a {
  display: inline-block;
  min-width: 60px;
  text-align: center;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}

.comingSoonCtn .socialMediaBox a:first-child {
  margin-right: 15px;
}

.comingSoonCtn .socialMediaBox a:hover {
  -webkit-transform: translate(0%, -15px);
  transform: translate(0%, -15px);
}
/*# sourceMappingURL=style.css.map */