@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&amp;display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face{
    font-family: "black-panther";
    src: url('fonts/bold-regular.woff2') format('woff2'),
    url('fonts/bold-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
::-webkit-scrollbar{
    width: 8px;
    background: #050505;


}
::-webkit-scrollbar-thumb{
    width: 8px;

    background: rgb(240, 240, 240);
}
body,html{
    background: url(../images/backdrop.jpg);
    background-size:cover;
    background-position: center;
    background-attachment: fixed;
    /* fallback for old browsers */
}
.intro{
    font-family: black-panther;
    text-align: center;
    padding: 40px;
    color: rgb(240, 240, 240);
    font-size: 100px;
}
.main-tagline{
    font-size: 30px;
    font-weight: 200;
}
.cursor,.cursor-two{
    opacity: 0;
}
.theme-selector{
    width: 90%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.center{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.theme{
    width: 40%;
    margin: auto;
    padding-bottom: 50px;
    padding-top: 50px;
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 1s ease;
}
.theme.reveal{
    transform: translateY(0px);
    opacity: 1;
    transition: all 1s ease;
}
.fade-in{
    opacity: 0;
}
.theme img{
width: 100%;
position: relative;
height: auto;
margin: 0;
padding: 0;
cursor: pointer;
border-radius: 8px;
z-index: 1;
}
a{
    color: rgb(240, 240, 240);
    font-size: 30px;
    font-family: black-panther;
    text-decoration: none;
}
.text{
    padding: 10px;
text-align: center;
font-family: poppins;
font-size: 22px;
}
.cursor{
    height: 50px;
    width: 50px;
    background: transparent;
    border-radius: 50%;
    pointer-events: none;
    border: .5px solid rgb(245, 245, 245);
    position: fixed;
    z-index: 11;
    top: -25px;
    left: -25px;
    overflow: hidden;
    font-family: brook;
    text-align: center;
    color:black;
    font-size: 16px;
  }
  .cursor-two{
    height: 8px;
    width: 8px;
    background: rgb(245, 245, 245);
    border-radius: 50%;
    pointer-events: none;
    position: fixed;
    z-index: 11;
    top: -4px;
    left: -4px;
    transition: all .05s ease;
  }
  .progressbar {
    position: absolute;
    bottom: 0%;
    right: 0%;
    background: rgba(255, 255, 255, 0.8);
    width: 2px;
    z-index: 5;
    min-height: 5%;
    transition: all .7s ease-out;
  }
  #preloader{
    height: 100vh;
    width: 100%;
    background: #050505; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    z-index: 100;
    font-size: 80px;
    font-family: black-panther;
    color: rgb(240,240,240);
}
  .progress-bar-container,.progress-bar-container-swiper{
      position: fixed;
      transform: rotate(180deg) translate(-50%,-50%);
      right: 5%;
      bottom:15%;
      height: 20vh;
      width: 2px;
    background: rgba(255, 255, 255, 0.4);
  }
  .headphone{
    position: fixed;
    left: 4%;
    bottom: 3%;
}
.headphone img{
    height: 46px;
}
.pace {
    pointer-events: none;
    user-select: none;
    z-index: 2000;
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    border: 0px;
    height: 1px;
    overflow: hidden;
    background:#1b1b1b;
  }
  
  .pace .pace-progress {
    box-sizing: border-box;
    transform: translate3d(0, 0, 0);
    max-width: 400px;
    position: fixed;
    z-index: 2000;
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: grey;
  }
  .p {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .pace.pace-inactive {
    display: none;
  }

  .contact{
      position: fixed;
      right:2%;
      top: 0%;
     padding: 20px;
     font-family: poppins;

      }
      .contact button{
          border-radius: 8px;
          color: rgb(240,240,240);
          background: rgb(240,240,240,.2);
          opacity: .9;
          padding: 10px 20px;
          font-family: poppins;
          border: none;
          transition: all.4s ease;
      }
      .contact button a{
          font-size: 16px;
        font-family: poppins;
    }
    .contact button:hover{
        opacity: 1;
        transform: scale(1.1);
    }


@media all and (min-width:0px) and (max-width:790px){
    .theme{
        width: 100%;
        margin: auto;
        padding-bottom: 50px;
        padding-top: 50px;
    }
    .theme-selector{
        flex-direction: column;  
    }
    .intro{
        font-family: black-panther;
        text-align: center;
        padding: 40px;
        color: rgb(240, 240, 240);
        font-size: 60px;
    }
    .main-tagline{
        font-size: 18px;
        font-weight: 200;
    }
    .contact button a{
        font-size: 14px;
      font-family: poppins;
  }
    .cursor{
   display:none;
  }
  .cursor-two{
   display:none;
  }

}