
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'League Spartan', sans-serif;
  background-color: black;
  color: whitesmoke;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #000;
  padding-bottom: 20px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contact-info p {
  font-size: 18px;
  margin: 4px 0;
}

    .delivery-numbers {
      font-size: 21px;
      line-height: 1.6;
    }

.image-gallery {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.image-card {
  flex: 1 1 30%;
  background-color: whitesmoke;
  padding: 10px;
  border: 1px solid #ddd;
  transition: transform 0.3s ease;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.image-card:hover {
  transform: scale(1.03);
  border-color: #000;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: black;
  color: #fff;
  margin-top: 40px;
}
