.container-wrapper{
display: flex;
width: 100vw;
height: 100vh;
background: url("../assets/images/background.svg") no-repeat center;
/* background-size: 100% 100%; */
background-color: #050505;
position: fixed;
}

.logo-wrapper{
    margin-bottom: 6.6rem;
}

.channel-wrapper{
    background: #2b2b2d;
    border-radius: 5px ;
}
.channel-img{
width: 4rem;
height: 4rem;
margin: .6rem 6rem 1rem 6rem;
}
.channel-img img{
    width: 100%;
    height:100%
}

.channel-text{
    margin-bottom: 1rem;
}

/* margin */
.mb-1{
    margin-bottom: 1rem;
}
.mb-2{
    margin-bottom: 2rem;
}
.mb-4{
    margin-bottom: 4rem;
}
.mb-8{
    margin-bottom: 8rem;
}
.mr-3{
    margin-right: 3rem;
}

.ds-flex{
    display: flex;
    /* justify-items: center; */
    align-items: center;
    justify-content: center;
}

.flex-direction-column{
    flex-direction: column;
}
.text-center{
    text-align: center;
}

.text-white{
    color: #fff;
}
.gradient{
    background: linear-gradient(
        to right,
        #FF008A 0%,
        #A360FD 51%,
        #0085FF 100%
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}


/* Font weight */
.text-weight-bold{
    font-weight: 800;
}
.text-weight-semibold{
    font-weight: 500;
}
.text-weight-medium{
    font-weight: 400;

}
/* Font size */

.text-small{
    font-size: 1.6rem;
}
.text-medium{
    font-size: 3rem;
}

.text-large{
    font-size: 3rem;
}

.text-xl{
    font-size: 5.4rem;
}

.star-wrapper{
    z-index: -1;
}
.star-image {
    position: absolute;
    width: 3rem;
    height: 3rem;
    animation: float  infinite ease-in-out, twinkle infinite ease-in-out;
  }

  @keyframes float {
    0% {
      transform: translateY(0) rotate(0deg) scale(1); 
      opacity: 0.7;

    }
    50% {
      transform:  translateY(-400px)rotate(180deg) scale(0.5); /* Random translation applied here */
      opacity: 1;
    
    }
    100% {
        transform: translateY(0, 0) rotate(0deg) scale(1); 
      opacity: 0.7;

      }
  }

  @keyframes twinkle {
    0%, 100% {
      opacity: 0.2;
    }
    50% {
      opacity: 1;
    }
  }


  @media screen and (max-width: 420px) {
    *{
        font-size: 31.25%;
    }
    .channel-img{
        width: 4rem;
        height: 4rem;
        margin: .3rem 3rem .5rem 3rem;
    }
    .social-wrapper{
        margin-left: auto;
        margin-right: auto;
    }
}

.pointer-events {
    cursor: pointer;
}