body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333;
  color: white;
  /* padding: 15px 20px; */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 30vw;
  align-items: center;
  text-transform: uppercase;
  transition: background-color 0.3s ease-in-out;
}

.logo {
  font-size: 1.5em;
}

.nav-list {
  font-size: 22px;
  list-style-type: none;
  display: flex;
}

.nav-list li {
  margin: 0 15px;
}
a {
  text-decoration: none;
}
.nav-list a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.cart-icon {
  font-size: 1.5em;
  cursor: pointer;
}

.con {
  align-items: center;
  display: flex;
  justify-content: center;
}
.con img {
  width: 100%;
  height: 100%;
}
.slider-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.shop-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 500;
  padding: 20px;
}
.shop-content h1 {
  text-transform: uppercase;
  font-weight: bold;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 6px;
  font-size: 60px;
}
.shop-content button {
  background-color: black;
  color: aliceblue;
  border-radius: 20px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  padding: 10px;
}
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.card-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 100px;
}

.card {
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex-direction: column;
  display: flex;
  align-items: center;
}

.card img {
  max-width: 77%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.buy-button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.buy-button:hover {
  background-color: #45a049;
}

.heading {
  display: flex;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
}
.heading h1 {
  background-color: aquamarine;
}
.ban {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .navbar {
    gap: 10vw;
  }
  .nav-list {
    font-size: 12px;
  }
  .card {
    width: 100%;
  }
  .con{
      margin-top: 76px;
  }
  .logo img {
    padding: 24px;
    width: 19%;
  }
}
