body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #121212;
    color: white;
    margin: 0;
    padding: 20px;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
#search-box {
    width: 60%;
    padding: 10px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
}
#search-btn, #show-more-btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    background: #ff5722;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}
#image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.image-card {
    margin: 10px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
}
.image-card:hover {
    transform: scale(1.1);
}
img {
    width: 300px;
    height: 200px;
    border-radius: 10px;
}
.download-btn {
    display: block;
    margin-top: 5px;
    padding: 5px 10px;
    font-size: 1rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}
#show-more-btn {
    display: none;
}
