html,
body {
    margin: 0;
    padding: 0;
}

.main-header {
    background-image: url('https://i.pinimg.com/originals/d8/09/0f/d8090f18bdbfe416f8d5c1a3e681ac57.jpg');
    background-size: cover; /* This ensures the image covers the entire header */
    padding-bottom: 10px;
    width: 100%;
    height: 100px;
}

.title {
    text-align: center;
    margin: 0;
    font-size: 3em;
    font-family: "Helvetica";
    font-weight: normal;
    color: white;
}
#card-container {
    display: flex;
    justify-content: center;
    margin: 20px;
    flex-wrap: wrap;  
}
#searchForm{
    text-align: right;
    width: auto;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.card {
    width: 80%;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 5px;
}
.card-content {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    font-family: "Verdana";
    color: #777;
}

.card-content h2 {
    margin-top: 0;
    font-size: 15px;

}

.card img {
    width: 100%;
    height: auto;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}

.card:hover img {
    width: 110%; 
}

.footer {
    background-image: url('https://i.pinimg.com/originals/d8/09/0f/d8090f18bdbfe416f8d5c1a3e681ac57.jpg');
    background-size: cover; 
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, .3);
    padding: 10px;
}

button {
    text-align: center;
    background-color: #666;
    border: none;
    padding-left: 10px;
    padding-right: 10px;
    height: 30px;
    border-radius: 10px;
    color: white;
    font-size: 22px;
    cursor: pointer;
    margin: 5px;
}