* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
}

img {
  width: 500px;
  height: 500px;
}

.navigation_container {
  width: 100%;
  background-color: blueviolet;
  color: aliceblue;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  position: fixed;
  top: 0;
}


.brand_name {
  margin-left: 50px;
}

.items_container {
  display: flex;
  align-items: center;
}

.item {
  padding: 12px 20px;
  font-size: 18px;
  border-radius: 10px;
  font-weight: bold;
  color: aliceblue;
}

.item:hover {
  background-color: aliceblue;
  color: black;
  cursor: pointer;
}

.store_head {
  margin-top: 100px;
  text-align: center;
}

.store_containter {
  justify-content: center;
  text-align: center;
  display: flex;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 100px;
}

.store_containter_2 {
  justify-content: center;
  text-align: center;
  display: flex;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 100px;
}

.store_containter_3 {
  justify-content: center;
  text-align: center;
  display: flex;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 100px;
}

.product {
  border: 10px outset;
  margin-left: 10px;
  margin-right: 10px;

}

.product button {
  color: white;
  background-color: blueviolet;
  width: 500px;
  font-size: 30px;
}

.product button:hover {
  background-color: aliceblue;
  color: black;
  cursor: pointer;
}

.footer {
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 20px;
  margin-bottom: 0px;
}


.logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.logo h2 {
  font-size: 24px;
  margin: 0;
}

.social-media a {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
  text-decoration: none;
}


footer p {
  margin: 0;
  text-align: center;
}


.social-media a:hover {
  opacity: 0.7;
}