<style>
   body {
	margin: 0;
 	background-color: #e6b3ff;
	background-image: url('LunaWeb BG 2.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	font-family: Arial, Helvetica, sans-serif;
 	color: white;
	}

    header {
      background-color: #ffd0fd;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
font-family: Arial, Helvetica, sans-serif; 
color: white;

    }

    header h1 {
      margin: 0;
      font-size: 2rem;
    }

    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropbtn {
      background: transparent;
      border: none;
      padding: 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .menu-icon {
      width: 28px;
      height: auto;
      display: block;
      border: none;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      right: 0;
      top: 100%;
      background-color: #ffd0fd;
      min-width: 160px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 1;
      border-radius: 10px;
      overflow: hidden;
    }

    .dropdown-content a {
      display: block;
      color: white;
      text-decoration: none;
      padding: 12px 16px;
      border: none;
      border-radius: 0;
    }

    .dropdown-content a:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    main {
      min-height: calc(100vh - 120px);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      gap: 20px;
    }

    img {
      width: 40%;
      height: 60%;
      object-fit: cover;
      border-radius: 12px;
      border: none
    }

    a {
      display: inline-block;
      color: white;
      text-decoration: none;
      padding: 0px 0px;
      transition: background 0.2s ease;
    }

    a:hover {
      background: rgba(255, 255, 255, 0.2);
    }
  </style>
