.overlay {
    position: relative;
    width: 100vw;
    height: 80vh;
    background-image: url("images/coffee_shop/bedford-studio-exterior.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.overlay-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.membership-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.paragraph {
    line-height: 2.25rem;
    font-size: 1.5rem;
    font-weight: 200;
    text-align: center;
    color: var(--cream);
    width: 60%;
}

.community-container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--cream);
}

.community-title {
    font-size: 2rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.community-info-container {
    display: flex;
    width: 100%;
}

.community-icon {
    width: 3rem;
    height: auto;
}

.item-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100px;
    width: 33%;
}

.community-item-title {
    font-size: 1.5rem;
    font-weight: 200;
}

.scrollable-list {
    display: flex;
    width: 100vw;
    height: 400px;
    align-items: center;
    overflow: scroll;
    background-color: var(--cream);
}

.scrollable-list::-webkit-scrollbar {
  display: none;
}

.scroll-images {
    flex: none;
}

.scroll-images {
    height: 350px;
    margin: 0 5px;
}

.subscribe-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    padding-bottom: 2rem;
    background-color: var(--cream);
}

.subscription-container {
    width: 100vw;
    display: flex;
    justify-content: space-around;
}

.subscription-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 1.5rem 0;
    background-color: white;
}

.subscription-title {
    font-size: 1.75rem;
    font-weight: 400;
}

.horizontal-line {
    height: .1rem;
    width: 80%;
    background-image: linear-gradient(#c8c2b5, #c8c2b5);
    margin: 2rem 0;
}

.purchase-link {
    color: white;
    background-color: var(--black);
    padding: 0.75rem 1.5rem;
    width: 80%;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-decoration: none;
}

.subscription-detail-container {
    background-image: linear-gradient(#c8c2b5, #c8c2b5);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 80%;
    border-radius: 20px;
    align-items: center;
    line-height: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
}

.detail-list {
    margin-left: 10px;
    line-height: 2rem;
}