@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&amp;display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
  gap: 0.6rem;
  background: url(Assets/PrimaryBackground.html);
  position: relative;
  padding-top: 30px;
  background: #22C1C3;
  background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
}

body .special_btn {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  height: 54px;
  width: 100%;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  /* background-color: #4CAF50; */
  background: #0c7083;
  border: 3px solid #fff;
  font-size: 20px;
  margin: 20px 0;
}

body header {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

body header .custom-row .brandIcon {
  width: 150px;
  border-radius: 6px;
}

body header .custom-row {
  text-align: center;
}

body header .custom-row .title_texts {
  text-align: center;
  position: relative;
}

body header .custom-row .title_texts .channel_name {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 15px;
  color: #fff;
}

body header .custom-row .title_texts .subs_count {
  color: #b1b1b1;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
}

body header .desc {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  color: #fff;
}

body .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

body .container .feature_section {
  padding: 15px;
  border-radius: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 2px dashed #ccc;
}

body .container .feature_section .title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

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;
  color: #fff;
}

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: 40px 15px;
  }

  body .desc {
    width: 80%;
    text-align: center;
  }

}