    body {
      margin: 0;
      font-family: 'Nexus', sans-serif;
      background-color: #000;
      text-align: center;
      color: #fff;
    }

   nav {
      background-color: #0d0d0d;
      padding: 20px 10px;
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 80px; 
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      z-index: 1000;
    }
    
    .navbar-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
    
    .logo img {
      width: 40px; 
      height: 40px;
      margin-bottom: 20px;
    }
    
    .nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 0;
      margin: 0;
    }
    
    .nav-links a {
      text-decoration: none;
      color: #fff;
      font-size: 14px; 
      font-weight: 500;
      display: flex;
      align-items: center; 
      justify-content: center; 
      transition: color 0.3s ease;
    }
    
    .nav-links .material-icons {
      font-size: 25px; 
      margin-right: 5px; 
    }
    
    .nav-links a:hover {
      color: #8e4de3;
    }
    
    .nav-links li {
      display: block; 
    }

    h1 {
      font-size: 48px;
      font-weight: bold;
    }

    .color1 {
      color: #8e4de3; 
    }

    .color2 {
      color: #ffffff;
    }

    .wrapper {
      margin-top: 50px;
    }
    
    .button {
      cursor: pointer;
      padding: 20px 20px;
      border-radius: 50px;
      color: #fff;
      background-color: #000;
      border: 2px solid #8e4de3;
      margin: 5px;
      transition: 0.2s ease-in-out;
    }
    
    .button:hover {
      padding: 20px 20px;
      border-radius: 50px;
      color: #000;
      background-color: #8e4de3;
      border: 2px solid #8e4de3;
    }

    .section {
      padding: 20px;
      margin: 20px auto;
      max-width: 800px;
      background-color: #000;
      border: 2px solid #8e4de3;
      border-radius: 50px;
      text-align: center;
   }
    
    .container {
      margin: 0 auto;
    }

    .search-bar {
      padding: 10px;
      text-align: center;
    }

    .search-bar input {
      padding: 10px;
      width: 50%;
      background-color: #000;
      border: 2px solid #8e4de3;
      border-radius: 50px;
      color: #fff;
    }

    .image-gallery {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
      padding: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .image-item {
      position: relative;
      width: 200px;
      height: 200px;
      overflow: hidden;
      border-radius: 10px;
      transition: transform 0.3s ease-in-out;
    }

    .image-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease-in-out;
    }

    .image-item:hover img {
      transform: scale(1.2);
    }

    .image-item:hover {
      transform: scale(1.1);
      cursor: pointer;
    }

    #search-input {
      margin-top: 10px;
    }

    .iframe-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 4vh;
            position: relative;
     }

    .iframe-container {
            width: 80vw;
            height: 80vh;
            position: relative;
            display: flex;
            justify-content: center;
            border-radius: 15px;
            align-items: center;
            border: none;
            background-color: #fff;
     }

    iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 15px;
     }

    .button-container {
            text-align: center;
            margin-top: 10px;
     }
