h1 {
  cursor: default;
  font-family: "Alumni Sans", sans-serif;
  color: rgb(255, 255, 255);
  max-width: 100vw;
  text-align: center;
}

a {
  cursor: pointer;
  font-family: "Alumni Sans", sans-serif;
  color: rgb(255, 255, 255);
  max-width: 100vw;
  text-align: center;
}

.share .perma {
  font-family: "Alumni Sans", sans-serif;
  color: rgb(255, 255, 255);
  position: relative;
  border-radius: 30px;
}
.share .perma .text {
  font-family: "Alumni Sans", sans-serif;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 12px 60px 12px 30px;
  height: 45px;
  MIN-width: 320PX;
  font-size: 24px;
  letter-spacing: 0.3px;
  color: #F0F0F0;
  border-radius: 25px;
  border: 1px solid rgba(242, 242, 242, 0.5019607843);
  background-color: #141313;
  outline: 0;
  appearance: none;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .share .perma .text {
    width: 100%;
  }
}
.share .perma .text:focus {
  border-color: orange;
}
.share .perma .copy {
  position: absolute;
  top: 50%;
  right: 25px;
  cursor: pointer;
  transform: translateY(-50%);
}
.share .perma .copy:hover:after {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
}
.share .perma .copy:after {
  content: attr(tooltip);
  width: 120px;
  bottom: -52px;
  left: 50%;
  padding: 5px;
  border-radius: 4px;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-10px) translateX(-50%);
  transition: all 300ms ease;
  text-align: center;
}
.share .perma .copy i {
  font-size: 20px;
  color: orange;
}
