body{
    background-color: #171E32;
    height: 100vh;
    margin: 0;
}
span::after{
    --percent :calc(var(--rate) / 5 *100%);
    content: '⭐️⭐️⭐️⭐️⭐️';
    background: linear-gradient(90deg,
    gold var(--percent),
    #fff var(--percent));
    background-clip: text;
    color: transparent;
     display: inline-block;
}
.main{
    width: 100%;
    height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
}

.bdiv{
    background-color: #293146;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    
}


.btn-a{
    background-color: #8A5CFF;
    margin-top: 40px;
    color: white;
    transition: all .5s;
    padding: 12px;
    border-radius: 15px;
    outline: none;
    border: none;
    font-size: 20px;
}

.btn-a:hover {
  background-color: #019FF8;
  color: white !important;
  border: 1.5px solid white !important;
  transform: scale(1.1);
}


.telegram{
    font-size: 70px;
    color: #FFC107;
}

.logo-img {
  max-width: 70%;
  height: auto;
}

.div-1{
    margin: 30px 0px 0px 0px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #00E4A5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div-2{
    margin: 30px 40px 0px 0px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-muted-p {
  color: #bbbbbb;
  font-size: 14px;
}










@media (max-width: 768px) {

}

@media (max-width: 480px) {

    .btn-a {
    width: 90%;
    font-size: 16px;
    padding: 10px;
  }

  .telegram {
    font-size: 50px;
  }

  .div-1, .div-2 {
    width: 60px;
    height: 60px;
  }

}