@import url(https://fonts.bunny.net/css?family=amita:700);
/* Style for the h1 heading */
h1 {
    font-family: 'Amita', Arial, sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin: 20px;
    color: #333; /* You can change the color to your preference */
}

/* Style for the form */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

label {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555;
}

select {
    width: 50%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
}

button {
    padding: 10px 20px;
    background-color: #333; /* You can change the color to your preference */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #555; /* You can change the color to your preference */
}

.image-gallery-container h1 {
    color: #fefae0;
    font-family: Amita;
    margin: 20px auto;
    width: 450px;
    font-size: 3rem;
    text-align: center;
    border-bottom: 10px double #bc6c25;
}

.image-gallery-container img {
    width: 450px;
    height: 300px;
    margin: 10px;
    border: 10px solid #fefae0;
    transition: transform 0.4s ease-in-out, border 0.3s, filter 0.4s;
}

.image-gallery-container img:hover {
    border: 5px solid #fff;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-filter: none;
    filter: none;
}

.image-gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
