@import url('https://fonts.googleapis.com/css2?family=Rampart+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee+Inline&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300..700&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Roboto", sans-serif;
  /* background-color: #000000; */
  /* color: white; */
  overflow-x: hidden;
  /* overflow-y: hidden; */

}

body {
  width: 100%;
  height: 100%;
  /* color: #fff; */
  /* overflow-y: hidden; */
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

#main {
  width: 100%;
  /* color: #fff; */
}

#loader {
  position: absolute;
  width: 100%;
  height: 110vh;       /* first = 100vh */
  z-index: 9999;
  margin-top: -60px;
  background-color: #000;
  color: #fff;
}

#loader #topheading {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  overflow-x: hidden; /* Hide horizontal scroll */
}

#topheading h5 {
  text-align: center;
  text-transform: uppercase;
  /* font-family: "Oswald", sans-serif; */
  /* font-family: "Lobster", sans-serif; */
  /* font-family: "Kaushan Script", cursive; */
  font-size: 11px;
  font-weight: 300;
  overflow-x: hidden; /* Hide horizontal scroll */
}

#loader h1 {
  display: flex;
  justify-content: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4vw;
  font-weight: 500;
  overflow-x: hidden; /* Hide horizontal scroll */
}

#loader h1 span .s1 {
  font-family: "Rampart One", sans-serif;
  /* font-family: "Bungee Inline", sans-serif; */
  /* color: #14cf93; */
  /* color: #1b74e4; */
}

.gradient-text {
    background: linear-gradient(45deg, #ff00cc, #3333ff); /* Define gradient colors */
    -webkit-background-clip: text; /* Clip the background to the text */
    background-clip: text; /* Clip the background to the text */
    color: transparent; /* Make the text transparent */
  }
  

.reveal .parent {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}

.reveal .parent .child {
  display: block;
}

.parent .child span {
  display: inline-block;
}

/* .bostami-header-logo {
  display: none;
  margin-top: -60px;
} */

/* Media Queries for Mobile Devices */
@media screen and (max-width: 768px) {
    #loader {
      height: 110vh; /* Adjust height for smaller screens */
    }
  
    #loader #topheading {
      top: 10%; /* Adjust top position */
    }
  
    #topheading h5 {
      font-size: 8px; /* Adjust font size */
    }
  
    #loader h1 {
      font-size: 6vw; /* Adjust font size */
    }
  }