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

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

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

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


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;
    font-size: 17px;
    font-weight: bold;
    color: black;
    transition: 0.3s;
}

.links li a:hover {
    color: #940788;
}


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

.search-input {
    border: none;
    background: none;
    outline: none;
    color: #fff;
    line-height: 30px;
    width: 0;
    transition: all 0.5s ease;
    font-size: 16px;
}

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

.search-btn {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff4757, #ff6b6b);
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

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


ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

ul a {
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

ul a:hover {
    color: #940788;
}

ul img {
    margin-top: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

