body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #E7E9E0;
}


.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product {
  background: #86946462;
  border: 1px solid #86946462;
  border-radius: 2px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: 10px;
}

.product img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

.product h3 {
  margin: 10px 0 5px;
}

.product p {
  margin: 5px 0;
  color: #555;
}

.product button {
  margin-top: 10px;
  padding: 10px 15px;
  color: #ffffff;
  background-color: #843B3C;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.product button:hover {
  background-color:#718d71;

}


.navbar {
  background-color: #405a40;
  padding: 25px;
  position: sticky;
   display: flex;
  justify-content: flex-end;
  top: 0;
}

button{
 background-color: #843B3C;
  
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.nav-link button a {
  color: #ffffff;
}
.nav-link a {
  color: rgb(34, 6, 6);
  text-decoration: none;
  font-family: Arial;
  font-size: 16px;
  
}



a {
  color: #9f4e4d;
  
}

body {
  background-image: url('sea-surface-water.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  height: 500px; 
  width: 100%; 
}