* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}   
body {
    height: 100vh;
    margin: 0;
    width: 100vw;
    background-color: #f0f0f0;
    padding: 0;
}

.container {
    padding: 16px;
    height: 100%;
    min-width: 300px;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 100%;
    text-align: center;
    min-width: 300px;
    overflow: auto;
}

#gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    background-color: #fff;
    border-radius: 12px;
}

#gallery img {
    width: 100%; /* optional */
    height: auto;
    border-radius: 12px;
    border: 1px solid #ccc;
    min-width: 300px;
}

.navbar {
  width: 100%;
  background: #ffffff;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: flex-wrap;
  gap: 8px;
  overflow-x: auto;
}

.navbar nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.navbar a {
  text-decoration: underline;
  color: #333;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 500;
}

.navbar a:hover {
  color: #007bff;
}