 /* Styling untuk navbar */
 .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f1f1f1;
    height: 56px;
    display: flex;
    align-items: center;  
    padding: 0 16px;
  }
  .animated-button {
    padding: 10px 20px;
    background-color: burlywood;
    color: black;
    border: none;
    border-radius: 4px;
    transition: opacity 0.3s;
    }

    .animated-button:hover {
    opacity: 0.7;
    }

    @keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
    }

    .animated-button {
    animation: fadeIn 1s;
    }

  /* Styles for image.html */
.container {
  margin: 0 auto;
  max-width: 7xl;
  display: grid;
  gap: 3px;
}

@media (min-width: 768px) {
  .container {
      grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .container {
      grid-template-columns: 1fr;
  }
}

.container img {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

/* Styles for overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

.overlay img {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.3s ease-in-out;
}

.overlay.show {
  display: flex;
}


