@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');


@import "css2.css";
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  font-family: 'Ubuntu Mono', monospace;
  font-size: 10px;
  backface-visibility: hidden;
}

body {
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

html {
  overflow: hidden;
}

body::-webkit-scrollbar{
  display: none;
}

*::selection {
  color: #fff;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
}
.background__video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.background__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: auto;
  min-height: 100%;
  min-width: 100%;
}
.background__video canvas {
  position: absolute;
  height: 100%;
  width: 100%;
  min-height: 100%;
  min-width: 100%;
}
.wrapper {
  position: relative;
  margin-top: 5%;
  left: 50%;
  transform: translateX(-50%);
  height: 60rem;
  width: 100%;
  max-width: 60rem;
}

@media screen and (min-width: 560px) {
  .container {
    .wrapper {
      position: relative;
      margin-top: 5%;
      left: 50%;
      transform: translateX(-50%);
      height: 15%;
      width: 100%;
      max-width: 15%;
    }
    
  }
}

.wrapper--top {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 32rem;
  height: 30rem;
}
.title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  padding-bottom: 300%;
  user-select: none;
  transform: translate(-150%, -15%);
}

.title img {
  max-width: 300%;
  height: auto;
}

@media screen and (max-width: 540px) {
  .title img {
    margin-top: 30%;
    margin-left: 40%;
    max-width: 225%;
    height: auto;

  }
}


.musicPlayer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32rem;
}
.pause {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  display: none;
  pointer-events: none;
  animation: stateSwitch 0.5s ease-in-out;
}
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 4rem;
  pointer-events: none;
  animation: stateSwitch 0.5s ease-in-out;
}
@keyframes stateSwitch {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
.hoverable:hover {
  cursor: url(../fonts/select.svg), pointer;
}
.currentlyPlaying {
  color: #fff;
  position: absolute;
  top: 75%;
  left: 50%;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  transform: translate(-50%, 0);
}
.currentlyPlaying--nowPlaying {
  font-size: 2rem;
  font-weight: 400;
  user-select: none;
}
.currentlyPlaying--nowPlaying--selector {
  font-size: 1.8rem;
  font-weight: 200;
}
.wrapper--bottom {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 53%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: flex-start;
  padding-top: 5%;
  padding-bottom: 5%;
}

.linkButton {
  height: 20%;
  width: 40%;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
  box-shadow: 0 0 2px 2px transparent;
  margin: 0 1rem 2rem;
}
.linkButton:hover {
  cursor: url(../fonts/select.svg), pointer;
  border: 1px solid #fff;
  transform: scale(1.05);
  transition: all 0.1s;
}
.linkButton:active {
  transform: scale(1);
}
.linkButton--background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 8%;
  width: 40%;
  background-color: #0a0812;
  border-radius: 2rem;
  transition: all 0.5s;
}
.linkButton:hover .linkButton--background {
  transform: translate(25%, -50%);
}
.linkButton--text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 2rem;
  font-weight: 300;
  transition: all 0.5s;
}
.linkButton:hover .linkButton--text {
  transform: translate(0, -50%);
  
  left: 13%;
  
  color: #fff;
  
}

.linkButton--icon {
  
  position: absolute;
  
  top: 50%;
  
  right: 0;
  
  transform: translate(200%, -50%);
  
  transition: all 0.5s;
  
  height: 2.6rem;
  
  width: 5rem;
  
}

.linkButton--icon.linkImg {
  
  height: 1.2rem;
  
}

.linkButton--icon img {
  
  height: 100%;
  
  width: auto;
  
}

.linkButton:hover .linkButton--icon {
  
  position: absolute;
  
  top: 50%;
  
  right: 0;
  
  transform: translate(0, -50%);
  
}

.musicPlayerSection {
  
  display: none;
  
}

body,

html {
  
  cursor: url(../fonts/cursor.svg), default;
  
  height: 100%;

  overflow-x: hidden;
  overflow-y: hidden;
  
}

.marquee-container {
  position: absolute;
  width: 100%;
  scale: 150%;
  bottom: 10%;
  text-align: center;
  color: white;
}

#marquee {
  width: 600px;
  height: auto;
  overflow: hidden;
  display: inline-block;
  margin-bottom: -2px;
  font-size: 100px;
  color: white;
}

a {
  color: white;
  text-decoration: none !important;
}

.linkButton1 {
  height: 20%;
  width: 40%;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
  box-shadow: 0 0 2px 2px transparent;
  margin: 0 1rem 2rem;
}
.linkButton1:hover {
  cursor: url(../fonts/select.svg), pointer;
  border: 1px solid #fff;
  transform: scale(1.05);
  transition: all 0.1s;
}
.linkButton1:active {
  transform: scale(1);
}
.linkButton1--background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 8%;
  width: 40%;
  background-color: #0a0812;
  border-radius: 2rem;
  transition: all 0.5s;
}
.linkButton1:hover .linkButton1--background {
  transform: translate(25%, -50%);
}
.linkButton1--text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 2rem;
  font-weight: 300;
  transition: all 0.5s;
  visibility: visible;

}
.linkButton1:hover .linkButton1--text {
  visibility: hidden;
  transform: translate(0, -50%);
  left: 13%;
  color: #fff;
}


.linkButton1--text2 {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: black;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 2rem;
  font-weight: 300;
  transition: all 0.5s;
  visibility: hidden;
  
}
.linkButton1:hover .linkButton1--text2 {
  visibility: visible;
  transform: translate(0, -50%);
  left: 13%;
  color: #fff;
  
}



.linkButton1--icon {
  
  position: absolute;
  
  top: 50%;
  
  right: 0;
  
  transform: translate(200%, -50%);
  
  transition: all 0.5s;
  
  height: 2.6rem;
  
  width: 5rem;
  
}

.linkButton1--icon.linkImg {
  
  height: 1.2rem;
  
}

.linkButton1--icon img {
  
  height: 100%;
  
  width: auto;
  
}

.linkButton1:hover .linkButton1--icon {
  
  position: absolute;
  
  top: 50%;
  
  right: 0;
  
  transform: translate(0, -50%);
  
}

.container {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  height: 10%;
  width: 100%;
  max-width: 60rem;
}

.bar {
  height: 30px;
  width: 50%;
  margin-top: 10%;
  position: relative;
  margin-left: 200%;
  margin-right: 50%;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  
}

.bar p1{
  font-size: 200%;
  margin-left: 5%;
  text-align: center;
  color: white;
}

#preloader {
  background: #000 url(/media/loader.gif) no-repeat center center;
  height: 100vh;
  background-size: 50%;
  width: 100%;
  position: fixed;
  z-index: 100000;
  transition:1s ease;
}


@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    width: 90%;
  }
}

/* Adjust styles for even smaller screens */
@media screen and (max-width: 480px) {
  body {
    font-size: 12px;
  }

  .container {
    width: 95%;
  }

  /* You can add more specific styles for smaller screens here */
}



@media screen and (max-height: 840px) {
  .wrapper--bottom {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: flex-start;
    padding-top: 0;
    padding-bottom: 5%;
  }

  .marquee-container {
    position: absolute;
    width: 100%;
    scale: 150%;
    bottom: 3.5%;
    text-align: center;
    color: white;
  }
  
  
}


@media screen and (max-height: 1080px) {
  .bar {
    height: 30px;
    width: 50%;
    margin-top: 10%;
    position: relative;
    margin-left: 150%;
    margin-right: 50%;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.75);
    
  }

  .marquee-container {
    position: absolute;
    width: 100%;
    scale: 150%;
    bottom: 3.5%;
    text-align: center;
    color: white;
  }
}
