body {
    background-color: black;
    font-family: "Spectral";
    color: white;
    text-align: center;
    align-content: center;
  }
  
  h1 {
    font-family: "Brush Script MT";
    font-size: 6rem;
    line-height: 1.2;
  }
  
  h1 span {
    color: #da88d0;
  }
  
  p {
    font-size: 2rem;
    margin-bottom: 4.5rem;
  }
  
  a {
    background-color: #da88d0;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 2.3rem;
    border-radius: .5rem;
  }
  
  a:hover {
    background-color:  #f5acec;
  }
  
  /* BG IMAGE */
  #bg-image {
    position: absolute;
    inset: 0;
    background-image: url("https://img.freepik.com/fotos-premium/bolo-de-aniversario-com-velas-e-baloes-em-closeup-de-fundo-escuro_780672-1486.jpg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
  }
  
  
  /* ANIMATION */
  
  h1, p, a {
    animation: appear 1s backwards;
  }
  
  h1 {
    animation-delay: 0.2s;
  }
  
  p {
    animation-delay: 0.8s;
  }
  
  a {
    animation-delay: 1.6s;
  }
  
  @keyframes appear {
    from {
      opacity: 0;
    }
  }
  
  /* RESPONSIVE */
  @media (width < 40rem) {
    html {
      font-size: 70%;
    }
  } 