@font-face {
  font-family: 'Rajdhani Regular';
  src: url('./Rajdhani-Regular.ttf') format('ttf');
  font-weight: 400; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: 'Rajdhani SemiBold';
  src: url('./Rajdhani-SemiBold.ttf') format('ttf');
  font-weight: 400; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: 'Rajdhani Bold';
  src: url('./Rajdhani-Bold.ttf') format('ttf');
  font-weight: 400; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: 'Rajdhani Light';
  src: url('./Rajdhani-Light.ttf') format('ttf');
  font-weight: 400; /* Regular */
  font-style: normal;
}
@font-face {
  font-family: 'Rajdhani Medium';
  src: url('./Rajdhani-Medium.ttf') format('ttf');
  font-weight: 400; /* Regular */
  font-style: normal;
}

body {
  font-family: 'Rajdhani';
  background-color: #0F1826;
  color: white;
}

.coming-soon-message {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
  margin-top: 15%;
}

img.coming-soon-img {
  margin: 0 auto;
  width: 450px;
}

@media (max-width: 890px) {
  .coming-soon-message {
	margin-top: 80% !important;
  }
  .coming-soon-message h1 {
    font-size: 72px !important;
  }
  .coming-soon-message h2 {
    font-size: 50px !important;
  }
  img.coming-soon-img {
    width: 50%;
  }
}