.search-form {
    text-align: center;
    margin: 2rem;
}

.search-form form {
    justify-content: center;
    display: flex;
    gap: 1.5rem;
}

.search-form form .box {
    justify-content: center;
    width: 100%;
    border: 0.1rem solid black;
    padding: 1rem;
    font-size: 1.5rem;
    color: black;
}

.search-form form button {
    width: 4rem;
    cursor: pointer;
    background-color: black;
    color: white;
    font-size: 1.5rem;
}

.search-form form button:hover {
    color: black;
    background-color: gold;
}