

@import url("https://fonts.googleapis.com/css?family=Roboto:400,900,700,500,300,100");

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

body {
  font-family: "Roboto", sans-serif;
  overflow: hidden; /* Prevent scrolling during loading */
  background: #0d0d0d;
}

/* 🟢 Preloader Styling */
.loading-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensures it stays on top */
}

.counter {
  text-align: center;
}

.counter p {
  font-size: 40px;
  font-weight: 100;
  color: #f60d54;
}

.counter h1 {
  color: white;
  font-size: 60px;
  margin-top: -10px;
}

.counter hr {
  width: 0%;
  height: 2px;
  background: #f60d54;
  border: none;
  transition: width 0.3s ease-in-out;
}

/* 🟢 Ensure Website Content is Hidden Until Loading is Done */
.content {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.loaded .content {
  opacity: 1;
}
