body {
    font-family: Arial, sans-serif;
    background: #f0f0f0;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
span{
    color: rgb(0, 166, 255);
    font-size: 40px;
}
.search-form {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    flex-basis: 1;
    flex-shrink: 0;
    flex-grow: 1;
    gap: 20px;
    width: 80%;
    margin-bottom: 20px;
}
.search-form input, .search-form select, .search-form button {
    padding: 10px;
    font-size: 16px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    margin: auto;
}
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-5px);
}
.card img {
    width: 100%;
    height: auto;
    display: block;
}
.card-content {
    padding: 15px;
}
.username {
    font-weight: bold;
    color: #333;
}
.description {
    color: #777;
    font-size: 14px;
    margin-top: 5px;
}
.dropdown{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 5px rgb(0, 0, 0, 0.3);
}
#orientationSelect, #pageSelect{
    border: none;
    background-color: white;
}
#orientationSelect:focus{
    outline: none;
}
#pageSelect:focus{
    outline: none;
}
#searchBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    background-color: rgb(0, 166, 255);
    color: white;
    box-shadow: 0px 4px 5px rgb(0, 0, 0, 0.3);
    cursor: pointer;
    gap: 5px;
}
#searchBtn:hover{
    background-color: rgb(0, 138, 212);
}
#queryInput{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: fit-content;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 4px 5px rgb(0, 0, 0, 0.3);
}
#queryInput:focus{
    outline: none;
}
@media (max-width: 2000px) and (min-width:1000px) {
    .search-form{
        width: 800px;
    }
    #queryInput{
        width: 40%;
    }
}

@media (max-width:350px) {
    .search-form{
        width: 100%;
    }
    #queryInput{
        width: 100%;
    }
    .dropdown{
        width: 100%;
    }
    #searchBtn{
        width: 100%;
    }
}