h1 {
    background: linear-gradient(to right, #fff, #D67933);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ph-envelope {
    width: 1rem;
}

.gradient-background {
    background: linear-gradient(283deg,#d67933,#4a6262,#a17855);
    background-size: 180% 180%;
    animation: gradient-animation 45s ease infinite;
  }
  
  @keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}  