@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(PrimaryBackground.jpg);
  position: relative;
}
.icon{
    font-size:12px!important;
}
body .special_btn {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  height: 46px;
  width: 230px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
body .special_btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: none;
  height: 80%;
  width: 95%;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}
body .special_btn button box-icon {
  margin-right: 7px;
}
body .special_btn:hover {
  box-shadow: 0 0 17px #0088cc;
}
body .special_btn::before {
  content: "";
  height: 230px;
  width: 230px;
  position: absolute;
  background: linear-gradient(135deg, #32B0ED, #8F68BD);
  animation: animate 1s linear infinite;
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
body header .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
body header .row .brandIcon {
  width: 70px;
  border-radius: 50px;
}
body header .row .title_texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
body header .row .title_texts::before {
  content: "";
  width: 4px;
  height: 87%;
  background: linear-gradient(135deg, #32B0ED, #8F68BD);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
}
body header .row .title_texts .channel_name {
  background: linear-gradient(135deg, #32B0ED, #8F68BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
        font-size: 20px;
        font-weight: 600;

}
body header .row .title_texts .subs_count {
 color: #626161;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 1px;
}
body header .desc {
  font-size: 0.87rem;
  color: #777777;
}
body .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
body .container .feature_section {
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4666666667);
  background: transparent;
  -webkit-backdrop-filter: blur(0.1rem);
          backdrop-filter: blur(0.1rem);
  padding: 30px;
  border-radius: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body .container .feature_section .title {
  background: linear-gradient(135deg, #32B0ED, #8F68BD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
body .container .feature_section ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
body .container .feature_section ul li {
  list-style: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #777777;
}
body footer {
  width: 100%;
  height: 37px;
  position: fixed;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, #32B0ED, #8F68BD);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.87rem;
  font-weight: 300;
}
body footer a {
  font-weight: 400;
  color: #ffffff;
}
body .popWindow {
  width: 100%;
  height: 100vh;
  background: linear-gradient(77deg, rgba(28, 34, 37, 0.8901960784), rgba(0, 0, 0, 0.8784313725));
  -webkit-backdrop-filter: blur(0.3rem);
  backdrop-filter: blur(0.3rem);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(3);
  transition: all 0.5s ease;
  z-index: 5000;
}
body .popWindow .pop-container {
  width: 80%;
  transform: scale(0);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}
body .popWindow .pop-container span {
  color: #000000;
}
body .popWindow .pop-container img {
  border-radius: 10px;
  width: 200px;
}
body .popWindow .pop-container .name {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 6px;
  color: #ffffff;
}
body .popWindow .pop-container .name span {
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
}
body .popWindow .pop-container .dec {
  text-align: center;
  letter-spacing: 0.7px;
  color: #dbdbdb;
  font-weight: 300;
  margin-bottom: 10px;
}
body .popWindow .pop-container .dec span {
  font-weight: 500;
  color: #04a895;
}
body .show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
body .show .pop-container {
  transform: scale(1);
}



@media only screen and (max-width: 900px) {
  body {
    padding: 0 16px;
  }
  body .desc {
    width: 80%;
    text-align: center;
  }
  body {
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  background: url(PrimaryBackground.jpg);
  position: relative;
}
}/*# sourceMappingURL=style.css.map */