body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    text-align: center;
    padding: 20px;
  }
  
  h1 {
    font-size: 6rem;
    color: #333;
    margin: 0;
    line-height: 1;
    position: absolute;
    top: 30rem;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  
  p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
  }
  
  .text {
    position: absolute;
    top: 40rem;
    left: 50rem;
    z-index: 10;
    font-size: 1.3rem;
  }
  
  .text-top {
    position: absolute;
    top: 7rem;
    left: 5rem;
    z-index: 10;
    text-align: justify;
    font-size: 1.2rem;
  }
  
  .text-bottom {
    position: absolute;
    bottom: 5rem;
    right: 10rem;
    text-align: justify;
    z-index: 10;
    font-size: 1.2rem;
  }
  
  .button {
    background-color: #000;
    color: #fff;
    padding: 13px 26px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1em;
    position: absolute;
    top: 47rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  
  .button:hover {
    background-color: #333;
  }
  
  .decoration {
    position: absolute;
    opacity: 0.7;
  }
  
  .star-1 {
    top: 15rem;
    left: 12rem;
    width: 12rem;
  }
  
  .star-2 {
    top: 17rem;
    left: 35rem;
    width: 15rem;
  }
  
  .star-3 {
    bottom: 12rem;
    right: 35rem;
    width: 12rem;
  }
  
  .image {
    position: absolute;
    z-index: 5;
  }
  
  .image-1 {
    top: 5rem;
    left: 86rem;
    width: 25rem;
  }
  
  .image-1 img {
    clip-path: ellipse(50% 60% at 50% 50%);
    display: block;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .image-2 {
    top: 28rem;
    right: 89rem;
    width: 25rem;
  }
  
  .image-2 img {
    clip-path: ellipse(50% 60% at 50% 50%);
    display: block;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Imagen fondo */
  img[src="../image/pagina13/fondo.png"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    height: auto;
    z-index: 1;
  }
  
  /* Imagen Party */
  img[src="../image/pagina13/Party.png"] {
    position: absolute;
    bottom: 12rem;
    right: 18rem;
    width: 12rem;
    z-index: 5;
  }
  
  /* ================== MEDIA QUERIES ================== */
  
  /* Tablets */
  @media (max-width: 1024px) {
    h1 {
      font-size: 4rem;
      top: 20rem;
    }
  
    .text,
    .text-top,
    .text-bottom {
      font-size: 1rem;
    }
  
    .image-1,
    .image-2 {
      width: 18rem;
    }
  
    img[src="../image/pagina13/Party.png"] {
      width: 9rem;
      bottom: 8rem;
      right: 10rem;
    }
  
    .star-1, .star-2, .star-3 {
      width: 8rem;
    }
  }
  
  /* Móviles */
  @media (max-width: 768px) {
    body {
      height: auto;
      align-items: flex-start;
    }
  
    .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: auto;
      padding: 2rem 1rem;
    }
  
    h1,
    .text,
    .text-top,
    .text-bottom,
    .button,
    .image-1,
    .image-2,
    img[src="../image/pagina13/Party.png"],
    .star-1,
    .star-2,
    .star-3 {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      transform: none;
      margin: 1rem 0;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    .text,
    .text-top,
    .text-bottom {
      text-align: center;
      font-size: 1rem;
    }
  
    .image-1,
    .image-2 {
      width: 70%;
      max-width: 200px;
    }
  
    img[src="../image/pagina13/Party.png"] {
      width: 7rem;
    }
  
    .star-1,
    .star-2,
    .star-3 {
      width: 5rem;
    }
  }
  