@font-face {
    font-family: 'ThaleahFat';
    src: url('./ThaleahFat.ttf');
}

body{
    background-image: url('./bg_new.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    z-index: 0;
    /* remove scroll */
    overflow: hidden;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */

}

.noise-wrapper{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    overflow: hidden;
    z-index: 100;
    filter: saturate(2);
}

.noise-wrapper::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%); */
}


.noise {
    position: absolute;
    top: -500px;
    right: -500px;
    bottom: -500px;
    left: -500px;
    background: url('./static.svg') 0 0 repeat;
    opacity: 1;
    animation: noise 1s steps(8,end) infinite both;
  }
.header{
  /* only logo is shown and in the center */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5vh;
    margin-top: 5vh;
    margin-left:15vh;
    z-index: 20;
}

.header-content{
  padding: 5vh;
  top: 0;
  left: 50%;
}

.center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.footer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 20;
}
  
  @keyframes noise {
    0% {
      transform: translateX(0px,0px); }
    10% {
      transform: translate(-100px, 100px);
    }
    20% {
      transform: translate(150px, -100px);
    }
    30% {
      transform: translate(-100px,100px);
    }
    40% {
      transform: translate(100px, -150px);
    }
    50% {
      transform: translate(-100px, 200px);
    }
    60% {
      transform: translate(-200px, -100px);
    }
    70% {
      transform: translateY(50px, 100px);
    }
    80% {
      transform: translate(100px, -150px);
    }
    90% {
      transform: translate(0px, 200px);
    }
    100% {
      transform: translate(-100px, 100px);
    }
  }
  
.logo{
    width: 80%;
    z-index: 20;
}

.icons{
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 10px;
    z-index: 20;
}

.sm-icon{
    width: 50px;
    height: 50px;
    margin: 10px;
    cursor: pointer;
    transition: transform .2s;
}

.sm-icon-w{
  width: 80px;
  height: 50px;
  margin: 10px;
  cursor: pointer;
  transition: transform .2s;
}

.sm-icon:hover{
    transform: scale(1.2);
}

.sm-icon:active{
    transform: scale(1.1);
}

.sm-icon-w:hover{
  transform: scale(1.2);
}

.sm-icon-w:active{
  transform: scale(1.1);
}

.lg-console{
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    z-index: 20;
}

.plus{
    position: absolute;
    top: 25vh;
    left: 5.5vh;
    height: 16vh;
    z-index: 21;
    transition: transform .2s;
}

.plus:hover{
    transform: scale(1.1);
}

.plus:active{
    transform: scale(1.05);
}

.minus{
    position: absolute;
    top: 29.5vh;
    right: 5.5vh;
    height: 7vh;
    z-index: 21;
    transition: transform .2s;
}

.minus:hover{
    transform: scale(1.1);
}

.minus:active{
    transform: scale(1.05);
}

.mint{
  /* center the mint button */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  
}

.lg-mint{
    bottom: 0;
    left: 0;
    height: 10vh;
    z-index: 20;
    transition: transform .2s;
}

.lg-mint:hover{
    transform: scale(1.1);
}

.counter{
  font-family: 'ThaleahFat';
  font-size: 40vh;
  color: #2a342a;
  position: absolute;
  top: 11%;
  left: 43%;
}

/* for mobile */
@media only screen and (max-width: 600px) {
  .header{
      margin-left: 11vh;
  }
  .header-content{
    margin: 0px;
    padding: 0px;
  }
  .logo{
    width: 80%;
    z-index: 20;
  }
  .center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
  }
  .lg-console{
    bottom: 0;
    left: 0;
    width: 50vh;
    height: 100%;
    z-index: 20;
  }
  .plus{
    position: absolute;
    top: 14.8vh;
    left: 3.3vh;
    height: 9vh;
    z-index: 21;
    transition: transform .2s;
  }
  .minus{
    position: absolute;
    top: 17.3vh;
    right: 3.3vh;
    height: 4vh;
    z-index: 21;
    transition: transform .2s;
  }
  .counter{
    font-family: 'ThaleahFat';
    font-size: 25vh;
    color: #2a342a;
    position: absolute;
    top: 8%;
    left: 43%;
  }
}

