@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  background-color: #080202;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px; /*1200*/
  margin: 0 auto;
}


.material-icons{
  color: #909090;
}

.center-align{
  color: #909090;
}

/* Loadin spinner */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-text {
  margin: 0;
  color: #666;
  font-size: 1.2rem;
}

.spinner-container p {
  margin-top: 20px;
  color: #666;
}