
	body {
            margin: 0;
            height: 100vh;
            /* Bluish-purple (#5B3EE4) to pure orange (#FF7A00) */
            /* Indigo/Sapphire (#1A237E) to Yellowish-Orange (#FFB300) */
            background: linear-gradient(
              135deg,
              #1A237E 0%,   /* indigo / sapphire */
              #6A1B9A 50%,  /* violet-purple bridge */
              #FFB300 100%  /* golden yellow-orange */
            );
            /* add some extra styling to make it "cool" */
            background-repeat: no-repeat;
            background-attachment: fixed;
            font-family: Italianno, cursive;
            font-weight: 400;
            font-style: normal;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
	}
      h1 {
        font-size: 5rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
      }
      .footer {
         position: fixed;
         right: 1%;
         bottom: 0;
         width: 150px;
         line-height: 0.8em;
         background-color: #33BCE6;
         color: white;
         text-align: center;
         font-size: 0.8em;
      }
    