.divider{
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* line */

.divider div{
    width: 120px;
    height: 2px;
    background: var(--border);
}

/* image */

.divider img{
    width: 26px;
    height: 26px;
    opacity: 0.4;
}

/* --- Media --- */

@media screen and (max-width: 500px) {
    
    .divider{
        justify-content: space-between;
    }
}