.search-container {
    margin-bottom: 20px;
}

#search-input {
    background-color: transparent;
    padding: 10px;
    font-size: 16px;
    width: 300px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff
}

.boxthing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxthing {
    width: 200px;
    height: 120px;
    position: relative;
    border-radius: 10px;
}

.boxthing img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #fff;
    transition: box-shadow 0.2s ease-in-out;
    border-radius: 10px;
}

.boxthing:hover img {
   box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.8);
}
