*
{
    margin: 0;
    padding: 0;
}

html,
body
{
    height: 100%;
    overflow: hidden;
    font-family: 'Montserrat';
    background: white;
    
}

.webgl
{
    position: absolute;
    top: 0;
    left: 0;
    outline:none;
    mix-blend-mode:multiply;
    /* background-blend-mode: difference; */
}

h1{
    font-size: 8rem;
    color: white;
    text-transform: uppercase;
}
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#progress-bar {
    position: relative;
    
}

.loading-container {
  position: relative;
  
}

.loading {
    font-family: "neue-haas-grotesk-text", sans-serif;
font-weight: 700;
font-style: normal;
  font-size: 4em;
  
}
label{
    color:white;
    font-size: 2rem;
}

#darkmodebutton{
   position:absolute;
   z-index: 1 !important;
   width: 13vh;
   right:3%;
   top: 1%;
   height: 4%;
}
#darkMode{
    cursor: pointer;
}
#darkModeTrue{
    visibility: hidden;
    display: none;
}
#darkMode{
    background:none;
    border: none;
    height: 100%;
}
#darkMode img{
    width: 100%;
}

.container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 100vw;
    color: red;
    /* background-color: white; */
    
}
.container .yes{
    z-index: 2;
    mix-blend-mode:difference; 
    width: 100%;
    background:none;
    border: none;
}
#logo{
    /* visibility: hidden; */
}
.container .yes img{
    z-index: 2;
    display: block;
    
    /* mix-blend-mode:difference;  */
    width: 100%;
    height: auto;
    margin: auto;
    /* background-blend-mode: difference; */
    opacity: 1;    
    /* filter: invert(0%) sepia(93%) saturate(28%) hue-rotate(121deg) brightness(101%) contrast(107%); */
    /* filter:invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(107%) contrast(100%);     */
    filter: grayscale(100%);
}
.progressbar-container {
        visibility: visible;
        height: auto;
    }
    #progress-bar {
        visibility: visible;
        width: 100%;
    }

/*# sourceMappingURL=main.css.map*/

@media only screen and (max-width: 768px) {
  /* For the div with class "yes" */
  .container .yes {
    width: 100vw; /* Make the container take the full width */
    display: flex;
    justify-content: center; /* Center horizontally */
    overflow: hidden; /* Make the image overflow horizontally */
  }

  /* For the image inside the div */
  .container .yes img {
    /* option for image full height*/
    /* height: 100vh; /* Set image height to full viewport height 
    width: auto; Width auto to maintain aspect ratio */

    /*option for logo*/
    height: auto; /* Set image height to full viewport height */
    width: 100vw; /* Width auto to maintain aspect ratio */
    object-fit: cover; /* Make the image cover the container */
    object-position: center; /* Center the image horizontally */
  }
}

/*# sourceMappingURL=main.css.map*/