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)
}


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;
}



.search-box {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  height: 40px;
  border-radius: 40px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
  transition: 0.4s;
}

.search-input {
  border: none;
  background: none;
  outline: none;
  color: white;
  width: 0;
  transition: 0.4s;
}

.search-box:hover .search-input {
  width: 140px;
  padding: 0 10px;
}

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

.search-btn {
  border: none;
  background: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
}



body > ul:first-of-type {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 30px;
  list-style: none;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}



img {
  margin-top: 15px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: 0.3s;
}

img:hover {
  transform: scale(1.05);
}

h2 + img + ul {
  max-width: 700px;
  margin: 20px auto 50px auto;
  padding: 25px;
  list-style: none;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 15px;
  line-height: 1.6;
}



@media (max-width: 768px) {

  .links {
    gap: 15px;
  }

  body > ul:first-of-type,
  h2 + img + ul {
    width: 90%;
  }

  img {
    width: 130px;
    height: 130px;
  }
}