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

#search-input {
    background-color: transparent;
    padding: 10px;
    font-size: 16px;
    width: 700px;
    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: 250px;
    height: 140px;
    position: relative;
    border-radius: 10px;
}

.boxthing img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

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