#opb-top-bar {
    background-color: var(--distro-drk-green);
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

#opb-top-bar > p:first-child {
    font-weight: 200;
    font-size: 2rem;
}
#opb-bottom-bar {
    background-color: black;
    color: white;
    padding: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#opb-cards-cont {
    display: grid;
    grid-template-columns: repeat(1, 10.5rem);
    gap: 4rem;
}
.opb-card-cont {
    text-align: center;
}
.opb-card {
    width: 10.5rem;
    height: 7rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}
#opb-lc-card {
    background-image: url("../images/highlight/assorted_yellow-lines.png");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
#opb-lc-card-img {
    width: 70%;
}
#opb-cl-card {
    background-image: url("../images/highlight/twisted-plaid_2.png");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
#opb-cl-card-img {
    width: 80%;
}
@media screen and (max-width: 860px) and (min-width: 501px) {
    #opb-cards-cont {
        display: grid;
        grid-template-columns: repeat(1, 10.5rem);
    }
}

@media screen and (max-width: 500px) {
    #opb-cards-cont {
        display: grid;
        grid-template-columns: repeat(1, 10.5rem);
        gap: 1rem;
    }
    .opb-card-txt {
        display: none;
    }
}
