* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow: hidden;
  background-color: #000000;
}

#loading {
  align-items: center;
  justify-content: center;
  width:100%;
  height: 100%;
  background-color: black;
  color: white;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  font-size: 2rem;
}
#constainer {
  align-items: center;
  justify-content: center;
  width:100%;
  height: 100%;
  color: white;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.link{
  cursor: pointer;
  color: white;
  text-decoration: none;
  padding: 1rem;
  font-size: 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.link:hover{
  text-decoration: underline;
}


.display{
  display: flex;
}
.hidden{display: none;}

/* Loading overlay styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* Change this if you want a different background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Spinner icon style */
.loading-screen i {
  font-size: 4rem;
  color: #3c5fec;
}
