body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column; /* Use column direction to stack navbar on top of content */
    background-color: #EDE8D0;
}

.bg-image {
    background-image: url('images/bemember.png');
    height: 730px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align content to the bottom */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto 250px auto;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: rgba(245, 245, 220, 0.50);
    height: 250px;
    width: 900px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
