    body {
      display:flex;
      flex-direction:column;
      align-items: center;
      justify-content: center;
      height: 100%;
      background: #ebb8b8;
      color: #000000;
      font-family: 'Poppins' ,sans-serif;
    }

    h1 {
      font-size: 4rem;
      margin: 0;
      transition: transform 0.2s ease, color 0.2s ease;
    }

    .animar {
      transform: scale(1.5);
      color: #ff0000;
    }

    p {
      margin-top: 1rem;
      color: #ffffff;
    }

    button {
      margin-top: 2rem;
      padding: 0.7rem 1.2rem;
      background: #00ff9d;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
    }

    button:hover {
      background: #00cc7a;
    }