img {
    width: 400px;
}



.purple-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    margin: 0;
  }

.purple-page h1 {
    font-size: 3.5em;
    margin: 0 0 30px 0;
    background: linear-gradient(120deg, #ffffff, #e0d5ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: bold;
    letter-spacing: 2px;
}

        .purple-page p {
            font-size: 1.3em;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
            text-align: center;
            max-width: 600px;
            line-height: 1.6;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            border: 1px solid rgba(255, 255, 255, 0.18);
            max-width: 500px;
            width: 100%;
        }

        .purple-page ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .purple-page li {
            padding: 15px 20px;
            margin: 12px 0;
            background: linear-gradient(90deg, rgba(245, 0, 87, 0.3), rgba(156, 39, 176, 0.3));
            border-left: 4px solid #ff1493;
            border-radius: 8px;
            color: white;
            font-size: 1.1em;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .purple-page li:before {
            content: "✨";
            font-size: 1.3em;
        }

        .purple-page li:hover {
            background: linear-gradient(90deg, rgba(245, 0, 87, 0.5), rgba(156, 39, 176, 0.5));
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(255, 20, 147, 0.4);
        }

        .gradient-divider {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff1493, #764ba2, #667eea);
            border-radius: 2px;
            margin: 20px 0;
        }

        .back-button {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .back-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }


body {
    text-align: center;
     background:darkslateblue;
    color: azure;

    font-family: 'Times New Roman', Times, serif;
   
}



.zoom-image {
    transition: transform 0.3s ease;
    width: 300px; /* Set your size */
  }
  
  .zoom-image:hover {
    transform: scale(1.1); /* Makes image 10% bigger */
  }

p{
  font-size: 20px;
}

ul {
  text-align: center;
  list-style-position: inside;
  padding-left: 0; 
  margin: 20px auto;
}

.my-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00ffb3;
  color: rgb(40, 40, 40); 
  text-decoration: none; 
  border-radius: 5px; 
  font-weight: bold;
}

.navbar {
  display: flex;
  gap: 15px;
  background-color: #333;
  padding: 10px;
  align-items: center;
  justify-content: center; 
}

.my-button:hover {
  background-color: #00ff59; 
}