html {
  font-size: 62.5%;
}
button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Global Classes  */

.Flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Wrapper {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  padding: 1.5rem;
}

.secHeading {
  font-size: 3rem;
  color: #2d8ad9;
  text-align: center;
  text-transform: uppercase;
}
/* Global Classes  */

.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.popupContent {
  position: relative;
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  text-align: center;
  justify-content: center;
    flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.popImage img {
  width: 100px;
  height: auto;
  border-radius: 50%;
  margin: 10px 0;
}

.popupContent .secHeading {
  margin-bottom: 0;
  font-size: 2.2rem;
}

.popupContent p {
  margin: 20px 0;
  color: #777777;
  font-size: 1.4rem;
}

.popupContent input {
  width: 80%;
  outline: none;
  padding: 15px;
  font-size: 16px;
  margin-right: 5px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.copyBtn {
  width: 180px;
  border: none;
  padding: 15px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  text-transform: uppercase;
  transition: all linear 0.3s;
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
}

.copyBtn:hover {
  border-radius: 5px;
}

.close {
  top: 15px;
  right: 15px;
  color: #333;
  font-size: 24px;
  cursor: pointer;
  font-weight: bold;
  position: absolute;
  transition: color 0.3s ease;
}

.overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
}

.popImage {
  width: 150px;
  height: 150px;
  margin-top: -110px;
  border-radius: 50%;
  border: 20px solid white;
  background-color: #ffffff;
}

.popImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.tagWrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.verified {
  color: white;
  font-weight: 700;
  padding: 5px 10px;
  font-size: 1.4rem;
  border-radius: 5px;
  text-transform: uppercase;
  background-color: #33b86c;
}

.bgColor {
  background-color: #e84f5e;
}

.dealBtn {
  width: 100%;
  padding: 15px;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: rgb(140, 56, 181);
   background: linear-gradient(90deg, rgb(177 66 231) 0%, rgb(22 90 148) 100%);
  transition: all linear 0.2s;
}

.dealBtn:hover {
  border-radius: 10px;
}
