h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-family: "Kanit", sans-serif;
  color: #FFD600;
}

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

body {
  /* animation: bg_blur 2s ease-in-out 0;
  -webkit-animation: bg_blur 2s ease-in-out; */
  background: radial-gradient(circle, rgba(0, 0, 0, 0.623) 0%, rgba(17, 17, 17, 0.568) 100%), url(/img/bg.jpg);
  background-size: cover;
}
body .coming-soon {
  color: #FFD600;
  text-transform: toptextcase;
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  -webkit-animation-name: fadedown;
          animation-name: fadedown;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}
body .coming-soon .toptext {
  margin-top: 20px;
  font-size: 2rem;
  color: #fff;
}
body .coming-soon .lowertext {
  font-size: 5rem;
}
body .coming-soon p {
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: none;
  text-align: center;
  padding: 15px;
}

/* button style */
a {
  display: block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  text-decoration: none;
  text-transform: toptextcase;
  font-weight: 600;
  color: black;
  background-color: #FFD600;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all 0.35s;
  margin-top: 22px;
  -webkit-animation-name: fadeinUp;
          animation-name: fadeinUp;
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
}
a:hover {
  background-color: #000;
  color: #FFD600;
}

/* Social Media Icons */
.fa {
  font-size: 24px;
  width: auto;
  margin-top: 25px;
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0);
}

.fa:hover {
  opacity: 0.7;
}

.fa-facebook {
  color: white;
}
.fa-facebook:before {
  font-size: 40px;
}

.fa-instagram {
  color: white;
}
.fa-instagram:before {
  font-size: 40px;
}

.fa-youtube {
  color: white;
}
.fa-youtube:before {
  font-size: 40px;
}

/* CSS Animations */
@-webkit-keyframes fadedown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadedown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeinUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeinUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes bg_blur {
  0% {
    -webkit-filter: blur(10px);
  }
  50% {
    -webkit-filter: blur(3px);
  }
  100% {
    -webkit-filter: blur(0px);
  }
}
@keyframes bg_blur {
  0% {
    -webkit-filter: blur(10px);
  }
  50% {
    -webkit-filter: blur(3px);
  }
  100% {
    -webkit-filter: blur(0px);
  }
}
/* Tablet and Mobile Styles */
@media screen and (max-width: 992px) {
  body {
    background-position-x: center;
  }
  body .coming-soon {
    line-height: 1.2;
    /*        img {
              visibility: hidden;
              display: none;
            } 
    */
  }
  body .coming-soon .toptext {
    font-size: 1.2rem;
  }
  body .coming-soon .lowertext {
    font-size: 3rem;
    text-align: center;
  }
  body .coming-soon p {
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: none;
    text-align: center;
    padding: 25px;
  }
}/*# sourceMappingURL=styles.css.map */