body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
}

#search-bar {
    width: 80%;
    padding: 10px;
    font-size: 18px;
    margin-bottom: 20px;
}

#image-results img {
    width: 200px;
    height: auto;
    margin: 10px;
    display: inline-block;
    transition: transform 0.2s;
}

#image-results img:hover {
    transform: scale(1.1);
}

#image-container img {
    max-width: 70%;
    height: auto;
}
