body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: clip;
    justify-content: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: inherit;
}

.master-container {
    /* or any color you prefer for dark background */
}

.container.reverb-content {
    /* If you want your content to have some spacing from the dark borders */
    padding: 20px; /* this will put 20px of white space around your content */
}

.reverb-content{
    height: 100vh;
}



.card_col {
    align-items: center;
}

.card {
    flex-direction: column;
    margin: 1rem;  /* margin on all sides top, bottom, right, left */
    width: auto;
    background-color: #194155;
    border: solid white;
}

.card-title:hover{
    color: #1b1b1b;
}

.card img{
    min-width: 5rem;
}

.card-body {
    color: inherit;
}

.card a {
    color: white;
    text-decoration: none;
}

.listings {
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px){ /* For mobile devices */
    .card{
        margin: 0.5rem; /* reduce margin for mobile */
        width: auto; /* let the card take the full width */
    }

    .card img{
        min-width: 2rem; /* you might want to resize your minimum image width for mobile */
    }
}