.developer-mode-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Use the full viewport height */
  text-align: center; /* Center text for any direct child text content */
  position: relative;
}

.developer-mode-details{
  margin-bottom: 30px;
  max-width: 720px;
}

.developer-watermark:hover{
  display: none;
  
}

.developer-watermark{
  z-index: -10;
  position: fixed;
  right: -20vw;
  bottom: -30vh;
}
.developer-watermark img{
  width: 60vw;
  filter: blur(8px);
  opacity: 0.03;
}


.max-width-400px{
  max-width: 400px;

}

