@charset "utf-8";
/* CSS Document */
    <style>
    body {
      background-color: black;
      margin: 0;
      font-family: Arial, sans-serif;
    }
    table {
      width: 100%;
      text-align: center;
      background-color: black;
    }
    td {
      padding: 12px;
    }
    a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
    }
    a:hover {
      color: cyan;
    }
  </style>
  <style>
    body {
      font-family: Arial, sans-serif;
      background: #f8f8f8;
      margin: 0;
      padding: 0;
    }

    h1 {
      text-align: center;
      padding: 20px;
    }

    .carousel-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      padding: 40px;
      flex-wrap: wrap;
    }

    .main-image {
      width: 600px;
      height: 400px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      object-fit: cover;
    }

    .thumbnails {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .thumbnails img {
      width: 100px;
      height: 70px;
      object-fit: cover;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
      border: 2px solid transparent;
    }

    .thumbnails img:hover,
    .thumbnails img.active {
      border: 2px solid #0077b6;
    }

    @media (max-width: 768px) {
      .carousel-container {
        flex-direction: column;
        align-items: center;
      }

      .main-image {
        width: 90%;
        height: auto;
      }

      .thumbnails {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
      }
    }
	   footer {
      background-color: #023e8a;
      color: white;
      text-align: center;
      padding: 1rem 0;
      margin-top: 2rem;
    }
  </style>