* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
}

.preloader {
    width: 100%;
    height: 100vh;
    background: #fff url(../image/Preloader.gif) center center no-repeat;
    background-size: 200px;
    position: fixed;
    z-index: 1000;

}

.logo {
    position: absolute;
    left: 30px;
    top: 20px;
    z-index: 100;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.logo span {
    color: aqua;
}

.search-image {
    width: 100%;
    height: 98vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../image/background.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

}

.search-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);

}

.input-wrapper {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 15px 30px 15px 35px;
    border: none;
    background-color: #fff;
    outline: none;
    border-radius: 50px;
}

.btn {
    padding: 10px;
    background-color: transparent;
    color: #666;
    border: none;
    outline: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;

}

.image {
    height: 300px;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
}

.image-container a img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    transition: 0.5s;
}

.image-container a img:hover {
    transform: scale(1.09);
}

.up-arrow {
    width: 30px;
    padding: 10px 5px;
    background-color: black;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 10px;
    bottom: 30px;
    cursor: pointer;
}

.show-more {
    margin: 50px auto;
    display: none;
    background-color: rgb(14, 154, 209);
    color: #fff;
    padding: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
}