body {
  margin: 0;
}

.d-flex.sidebar {
  background-color: #2a2a2a;
  min-height: 100vh;
}

.d-flex.sidebar a {
  color: #ccc;
}

.d-flex.sidebar a:hover {
  color: white;
}

.p-4.main {
  display: flex;              /* THIS was missing */
  color: #e0e0e0;
  min-height: 100vh;
  background-color: #2a2a2a;
  font-family: "JetBrains Mono", monospace;
}

p {
  font-size: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.thumb {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.thumb:hover {
  transform: scale(1.05);
}
