body {
    background-color: #ffffff;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .image-container img {
        max-width: 100%;
        height: auto;
    }
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    /* width: 80rem; */
    height: 33rem;
    background-color: #424143;
    color: #ffffff;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .card {
        width: 100%;
        height: 100%;
    }
}

.card-title {
    text-align: center;
}

.card-title:hover { 
    /* color: #05004d; */
    opacity: 0.85;
}

.card-text {
    text-align: center;
}

.card-text:hover {
    opacity: 0.85;
}

.reverb-image:hover {
    opacity: 0.85;
}

.card-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* reverb store CSS */
.reverb-embedded-listings {
    list-style-type: none !important;
    float: left;
}

.reverb-embedded-listing {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 0.25em;
    box-shadow: 2px 2px 1px #f9f9f9;
    width: 200px;
    float: left;
    right: 0.5em;
    margin-right: 1em;
    margin-bottom: 1em;
    font-family: "Arial", "Verdana", sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    list-style-type: none;
}

@media (max-width: 768px) {
    .reverb-embedded-listing {
        position: relative;
        border: 1px solid #ddd;
        border-radius: 0.25em;
        box-shadow: 2px 2px 1px #f9f9f9;
        width: 200px;
        float: none;
        right: 1em;
        margin: 1em auto; /*center the element horizontally */
        /* float: left; */
        /* margin-right: 1em; */
        /* margin-bottom: 1em; */
        font-family: "Arial", "Verdana", sans-serif;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        list-style-type: none;
    }
}

.reverb-embedded-listing a {
    text-decoration: none;
    color: #0080a5;
}

.reverb-embedded-listing-info {
    border-top: 1px solid #ddd;
    padding: 1em;
    height: 5em;
}

.reverb-embedded-listing-title {
    display: block;
    max-height: 38px;
    color: #ffffff;
    font-size: 0.90rem;
    font-weight: bold;
    overflow: hidden;
}

.reverb-embedded-listing-title:hover {
    opacity: 0.85;
}

.reverb-embedded-listing-price {
    position: absolute;
    padding: 0.75rem;
    top: 0;
    right: 0;
    font-weight: bold;
    background-color: #D27900;
    color: white;
}
.reverb-embedded-listing img {
    border-top-left-radius: 0.25em;
    border-top-right-radius: 0.25em;
    width: 100%;
}

.reverb-embedded-listing img:hover { 
    opacity: 0.85; 
}