::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}

body {
  background-color: black;
  height: 100vh;
  margin: 0rem;
  overflow: hidden;
}

@keyframes rotate {
  from {
    rotate: 0deg;
  }
  
  50% {
    scale: 1 1.5;
  }
  
  to {
    rotate: 360deg;
  }
}

#blob {
  background-color: white;
  height: 36vmax;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  background: linear-gradient(to right, red, mediumpurple);
  animation: rotate 20s infinite;
  opacity: 0.8;
}

#blur {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(12vmax);
}

h1 {
  margin: auto;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 10vw, 10rem);
  color: white;
  padding: 0rem clamp(1rem, 2vw, 3rem);
  border-radius: clamp(0.4rem, 0.75vw, 1rem);
  z-index: 10;
}
h2{
  margin-top: auto;
  margin-right: auto;
  left: 0;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 6vw, 6rem);
  color: white;
  padding: 0rem clamp(1rem, 2vw, 3rem);
  border-radius: clamp(0.4rem, 0.75vw, 1rem);
  z-index: 10;
}
.content{
  overflow-x: hidden  ;
  position: absolute;
  height: 100vh;
  width: 100vw;
  z-index: 3;
  scroll-snap-type: y mandatory;
}
.slide{
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  scroll-snap-align: center;
  content-visibility: auto;
}

.hidden {
  opacity:0;
}
.console-container {
 
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 10vw, 10rem);
  text-align:center;
  display:block;
  color:#01d572;
  margin:auto;
  z-index: 6;
}
.console-underscore {
  display:inline-block;
  top:-0.14em;
  left:10px;
}
:root {
  --bg-color: rgba(20, 20, 20, 0);
  --card-color: rgba(23, 23, 23, 0.2);
}

#cards {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;  
}

#cards:hover > .card::after {
  opacity: 1;
}

.card {
  background-color: rgba(255, 255, 255, 0);
  margin:auto;
  padding: 5em 2em;
  width: 70vw;
  height: 40vh;
  border-radius: 20px;
  backdrop-filter: blur(12vmax);
  z-index: 5;
}

.card:hover::before {
  opacity: 1;
}

.card::before,
.card::after {
  border-radius: inherit;
  content: "";
  height: 100%;
  left: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  transition: opacity 500ms;
  width: 100%;
}

.card::before {
  background: radial-gradient(
    800px circle at var(--mouse-x) var(--mouse-y), 
    rgba(255, 255, 255, 0.06),
    transparent 40%
  );
  z-index: 3;
}

.card::after {  
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y), 
    rgba(255, 255, 255, 0.4),
    transparent 40%
  );
  z-index: 1;
}

.card > .card-content {
  background-color: var(--card-color);
  backdrop-filter: blur(12vmax);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  inset: 5px;
  padding: 10px;
  position: absolute;
  z-index: 2;
}
.terminal{
  margin: 20px;
  position: absolute;
  z-index: 10;
  font-size: clamp(1rem, 2vw, 2rem);
}
.three{
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  width: 100vw;
  height: 100vh;
}

#livestream {
  background-color: var(--card-color) !important;
  backdrop-filter: blur(12vmax);
  margin: auto;
  margin-bottom: 0;
  width: 60vw;
  height: 33.75vw;
  border-radius: 20px;
}