* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida G
  rande', 'Lucida Sans', Arial, sans-serif;
}

body {
  background: #f1b1d5;
}

.navbar {
  position: sticky;
  top: 0;
  width: 99%;
  margin: 21px auto;
  padding: 15px 30px;
  background: #cc849c;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(44, 1, 30, 0.836);
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo img {
  width: 35px;
}

.logo h2 {
  font-size: 25px;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(17, 9, 4, 0.897);
  font-size: 16px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: rgb(85, 8, 40);
}

.order-btn {
  padding: 10px 20px;
  background: linear-gradient(to right, #e47f95, #500b35d5);
  border: none;
  color: rgb(32, 1, 17);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.order-btn:hover {
  opacity: 0.9;
}
.image img{
  width: 100%;
  margin: auto;
}



