 body {
             background: linear-gradient(135deg, #4d0b4f, #9c2a74);
             color: #f0f0f0;
             font-family: Arial, sans-serif;
             text-align: center;
             min-height: 100vh;
             transition: background 0.3s ease;
         }
        h1, h2 {
            color: #8B4513;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
            margin-bottom: 1rem;
        }
        a {
            color: #D2691E;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.2s ease;
            padding: 0.2rem 0;
        }
        a:hover {
            text-decoration: underline;
        }
        p {
            font-size: 18px;
        }
        img {
            border-radius: 10px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            margin: 10px;
        }
        button {
            background-color: #FFD700;
            border: none;
            padding: 12px 24px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            transition: all 0.2s ease;
        }
        button:hover {
            background-color: #FFC107;
        }
		
		/* Navigacijos juostos fonas */
nav {
  background-color: #333;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Išvalo sąrašo numatytus taškus ir tarpus */
nav ul {
  list-style: none;                   /* Pašalinami bullet'ai */
  margin: 0;                           /* Nėra išorinių tarpų */
  padding: 0;                        /* Nėra vidinių tarpų */
  display: flex;                     /* Išdėsto visus elementus eilutėje */
  justify-content: center;   /* Centre išdėsto elementus */
}

/* Nuorodų stilius */
nav ul li a {
  color: white;                     /* Nuorodos tekstas – baltas */
  padding: 10px 20px;      /* Erdvė aplink tekstą */
  text-decoration: none;   /* Pašalinamas pabraukimas */
}

/* Nuorodos hover efektas */
nav ul li a:hover {
  background-color: #555;
  transform: translateY(-2px);
  transition: all 0.2s ease;
}
		