* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    min-height: 100vh;
    padding: 20px;
}

h1 {
    margin-bottom: 10px;
    color: #333;
}

h2 {
    margin-bottom: 10px;
    color: #606060;
}

.search {
    margin: 30px 0;
}

input {
    padding: 12px;
    width: 260px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.4);
}

button {
    padding: 12px 18px;
    margin-left: 10px;
    border: none;
    border-radius: 8px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 18px;
}

button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.cards {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.card {
    width: 260px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 150px;
    margin-bottom: 10px;
}

.card h3 {
    margin: 10px 0;
    color: #333;
    text-transform: capitalize;
}

.card p {
    color: #666;
    font-size: 14px;
}

main {
    display: flex;
    justify-content: center;
    gap: 30px;
}