body {
  background-color: #e6c3d7;
  text-align: center;
}

h1 {
  color: rgb(0, 0, 0);
}

h2 {
  color: rgb(93, 34, 141);
}

h3 {
  color: rgb(0, 0, 0)
}

table, th, td {
  border: 1px solid #000;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

ul li {
  display: inline-block;   
  margin-right: 20px;      
}

ul li a {
  text-decoration: none;   
  color: black; 
  font-weight: bold; 
}


ul li.aboutus a {
  border-bottom: 2px solid black;
  padding-bottom: 5px;
}  

#lippenstift {
  background-color: rgb(219, 152, 162);
}

section {
  margin: 20px 0;
  padding: 10px; 
  border-radius: 10px;
}


.search-box {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  height: 40px;
  border-radius: 40px;
  padding: 10px;
  width: 200px;
  box-shadow: 0 0 25px rgba(255, 107, 107, 0.3);
  transition: all 0.5s ease;
}

.search-input {
  border: none;
  background: none;
  outline: none;
  float: left;
  padding: 0;
  color: #fff;
  line-height: 40px; 
  width: 0;
  transition: all 0.5s ease;
}

.search-btn {
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff4757, #ff6b6b);
  cursor: pointer;
}

.search-box:hover > .search-input {
  width: 150px;
  padding: 0 15px;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}


.producten {
  width: 70%;              
  margin: 0 auto;         
  display: flex;
  flex-wrap: wrap;          
  gap: 20px;                
  justify-content: space-between; 
}

.product {
  background: white;
  padding: 25px;
  border-radius: 20px;
  flex: 0 0 47%;           
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
  box-sizing: border-box; 
}

.title {
  margin: 40px 0;
  font-size: 32px;
  color: #0400ff;
}

.product img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.product h3 {
  margin: 15px 0 10px;
  color: #000000;
}

.product button {
  background: #940788;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 15px;
  cursor: pointer;
  margin-top: 10px;
}

.product button:hover {
  background: #b312a5;
}

.autoShow {
  animation: text-appear both; 
  animation-timeline: view();
  animation-range: entry 20% cover 100vh;
}

@keyframes text-appear { 
  from {
    opacity: 0;
    transform: translateY(100px)
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


nav {
  background-color: #f4d4e4;
  padding: 15px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
 
.links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
 
.links li {
  display: flex;
  align-items: center;
}
 
.links li a {
  text-decoration: none;
}
 
.links li h1 {
 
  color: black;
  transition: 0.3s;
}
 
.links li h1:hover {
  color: #940788;
}
 