/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

.header-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* NAV BAR BELOW HEADER */
nav {
  background: #000;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px;
  margin: 0;
}

nav li {
  margin: 0 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: red;
}

/* GALLERY */
.gallery {
  padding: 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.grid img {
  width: 100%;
  border: 2px solid #444;
}

/* CONTENT */
.content {
  padding: 20px;
}

/* STORE */
.products {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.product {
  background: #222;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.product img {
  width: 150px;
}

/* FOOTER */
footer {
  background: #000;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}

.socials a {
  margin: 0 10px;
  color: #fff;
}