.merchant {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.merchant-title {
    text-align: center;
    margin-bottom: 20px;
    color: #414042;
}

.merchant-title h1 {
    font-size: 50px;
}

.merchant-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.merchant-images {
    display: flex;
    justify-content: center;
    max-width: 70%;
    margin-block: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.merchant-img {
    width: 100px;
    height: 75px;
    margin: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.merchant-img img {
    width: 70px;
}

.merchant-img img:hover{
    width: 100px;
}

#xl-img {
    width: 50px;
}
#xl-img:hover {
    width: 70px;
}

.merchant-content button {
    color: #218B54;
    background-color: white;
    border-radius: 20px;
    border: 1px solid #218B54;
    padding: 10px 20px;
    margin-top: 20px;
    transition: 0.3s;   
    font-size: 10px;
}
.merchant-content button:hover {
    background-color: #218B54;
    color: white;
}

@media (max-width: 1000px) {
    .merchant {
        margin-top: 50px;
    }
}

@media (max-width: 700px) {
    .merchant-images {
        min-width: 100%;
    }
    .merchant-images img {
        margin: 0.5rem 1rem;
    }
}
@media (max-width: 450px) {
    .merchant-img {
        margin: 0;
    }
}