.search {
    position: relative;
    gap: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchTerm {
    width: 100%;
    border: 5px solid rgb(255, 224, 108);
    padding: 5px;
    height: 46px;
    border-radius: 5px 0 0 5px;
    outline: none;
    transition: placeholder 0.5s ease;
}

.searchTerm:focus {
    color: black;
}

.searchButton {
    margin-left: -1px;
    width: 40px;
    height: 46px;
    border: 1px solid rgb(255, 224, 108);
    border-right: 5px solid rgb(255, 224, 108);
    background: rgb(255, 224, 108);
    text-align: center;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 18px;
}

.wrap {
    width: 550px;
    max-width: 70%;
    position: relative;
    display: inline-block;
}

@media screen and (max-width: 425px) {

    .searchTerm {
        width: 100%;
        border: 5px solid rgb(255, 224, 108);
        padding: 5px;
        height: 46px;
        border-radius: 5px 0 0 5px;
        outline: none;
    }

    .searchTerm:focus {
        color: black;
    }

    .wrap {
        width: 550px;
        max-width: 80%;
    }
}
