* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #82c2e5;
    min-height: 100vh;
}

.search {
    text-align: center;
    padding: 30px 20px;
    background-color: #4a90e2;
    color: white;
}

.search h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.search-box input {
    padding: 10px;
    width: 300px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}

.search-box button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #4a90e2;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #e1e1e1;
}

#container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

#container img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

#container img:hover {
    transform: scale(1.05);
}
