body {
    font-family: 'Arial', sans-serif;
    margin: 20px;
    padding: 0;
    background-color: #000000;
}

header {
    background-color:#000000;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: relative;
}

h1 {
    margin-bottom: 20px;
}

a {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #fff;
    text-decoration: none;
}

section {
    background-color: #141414;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

h2 {
    color: #fff;
}

p {
    line-height: 1.5;
    margin-bottom: 15px;
    color: #fff;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}



@font-face {
    font-family: "Geist";
    src: url("https://pham.codes/d/GeistVF.woff2") format("woff2");
  }
  
  .pAnimacio {
    font-family: "Geist";
    font-size: 68px;
     margin: 0;
    background-color:  #111;
    background-image: linear-gradient(0deg, white 70%, #111);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    filter: drop-shadow();
  
    --wght-min: 32;
    --wght-max: 240;
  }
  
  .pAnimacio > span {
    animation: breath 2.5s alternate cubic-bezier(0.37, 0, 0.63, 1);
    animation-iteration-count: infinite;
    animation-delay: 2.5s;
    animation-fill-mode: both;
  }
  
  @keyframes breath {
    0% {
      font-variation-settings: "wght" var(--wght-min);
    }
    100% {
      font-variation-settings: "wght" var(--wght-max);
    }
  }
  
  /* Setup */
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  