:root {
  --primary: #b6895b;
  --bg: #eaeaea;
  --bg1: #28c76f;
  --secondary: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  /* background-color: #eee; */
  color: #000;
}

/* Style Gallery */
img {
  max-width: 80% auto;
  border: 1px solid var(--bg1);
  position: relative;
}

.container {
  padding: 50px 20px;
  align-itms: center;
  background-color: rgba(255, 255, 255, 0.5);
  margin: auto;
  padding: 10px;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  z-index: 9999;
}

.preview-img {
  height: 50%;
  width: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.3);
}

.galleries {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.galleries img {
  width: 130px;
  height: 130px;
  cursor: pointer;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.3);
}

/* Laptop */
@media (max-width: 1366px) {
  .preview-img {
    width: 100%;
    height: 687px;
  }
}

@media (max-width: 768px) {
  .preview-img {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .galleries img {
    width: 80px;
    height: 80px;
  }
}
