body {
  height: 100%;
  font-family: sans-serif;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

* {
  box-sizing: border-box;
}

header {
  background-color: black;
  padding: 10px 0; 
  display: flex;
  justify-content: center; 
  align-items: center;
  height: 80px; 
  position: sticky;
  top: 0;
  z-index: 20;
}

.logoposition {
  display: flex;
  align-items: center;
}

.logo {
  color: white;
  font-size: 20px;
  font-weight: bold;
}
.logo img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

#menu {
  width: 100%;
  margin: auto;
  padding: 10px;
  background-color: white;
  display: flex;
  justify-content: space-evenly;
  position: sticky;
  top: 80px;
  z-index: 19;
}

.menu-item {
  width: 18%;
  background-color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.menu-item a {
  font-weight: bold;
  color: black;
  text-decoration: none;
}


.menu-item:hover {
  background-color: rgb(238, 236, 236);
}

.menu-item:hover a {
  color: rgb(34, 34, 34);
}

.current {
  font-weight: bold;
  color: red;
  background-color: white;
}

.bg {
  background-image: url("images/hero.jpg");
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: fixed;
  z-index: -1;
}

.button {
  text-align: center;
  width: 15%;
  text-decoration: none;
  color: white;
}

.button img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 12px;
  transition: transform 0.3s ease; 
}

.button img:hover {
  transform: scale(1.1); 
}

.products {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 400px;
  margin-bottom: 300px;
}

.products h3 a {
  color: white;
  text-decoration: none;
}
footer {
  width: 100%;
  background-color: white;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  border-top: 1px solid beige;
  margin-top: 0;
}



form {
  width: 60%;
  margin: auto;
  padding: 20px;
  background-color: white;
  height: auto;
  text-align: center;
  font-family: sans-serif;
}

input {
  width: 80%;
  margin-bottom: 10px;
}



.story {
  width: 50%;
  margin: 100px auto;
  background-color: white;
  padding: 20px;
  text-align: center;
  font-family: sans-serif;
  color: black;
}
