/* GENERAL STYLES */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Lora', serif;
  font-weight: 400;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* HEADER */
header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #333;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

/* MAIN CONTENT */
main {
  padding: 40px;
  text-align: center;
}

.intro {
  max-width: 600px;
  margin: 0 auto;
}

/* GALLERY */
.gallery, .shop-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery img, .shop-gallery img {
  width: 100%;
  height: auto;
  border: 1px solid #444;
}

figcaption {
  margin-top: 10px;
  font-size: 0.9em;
  color: #aaa;
}

/* BUTTON */
.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border: 1px solid #fff;
  background: none;
  color: #fff;
  transition: 0.3s;
}

.button:hover {
  background: #fff;
  color: #000;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #333;
  font-size: 0.8em;
  color: #777;
}
