/* Basic Reset and Styling */
* {
    box-sizing: border-box; /* Ensures padding/border are included in element's total width/height */
    margin: 0;
    padding: 0;
}

/* Main GRID Container | ViewPort */
#Two_Witness_Grid__Man_and_Wife {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(16, minmax(50px, auto));
    /*grid-template-rows: repeat(16, 1fr);*/
    gap: 10px; /* Adds Space Between Grid Items (Optional) */
    max-width: 1200px;
    margin: 0 auto; /* Centers The Container on The Page */
    padding: 10px;
}

/* TW Flex [Header] | Container Row 1/6 */
#Two_Witness_Flex__header {
    display: flex;
    justify-content: space-around; /* Distributes Items Evenly Within The Container */
    align-items: center;
    grid-column: span 12; /* Makes The Flex Container Span All 12 Columns */
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    flex-wrap: wrap; /* Allows Items to Wrap if THey Exceed The Container Width */
}

.Two_Witness_Flex__header_item {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    margin: 5px; /* Spacing Between Flex Items */
    text-align: center;
    /* Flexbox Properties for Individual Items [e.g. Each Item Takes Equal Space] */
    flex: 1;
    min-width: 100px; /* Prevents Items from Getting Too Small on Smaller Screens */
}

/* TW Flex [div_top] | Container Row 2/6 */
#Two_Witness_Flex__div_top {
    display: flex;
    justify-content: space-around; /* Distributes Items Evenly Within The Container */
    align-items: center;
    grid-column: span 12; /* Makes The Flex Container Span All 12 Columns */
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    flex-wrap: wrap; /* Allows Items to Wrap if THey Exceed The Container Width */
}

.Two_Witness_Flex__div_top_item {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    margin: 5px; /* Spacing Between Flex Items */
    text-align: center;
    /* Flexbox Properties for Individual Items [e.g. Each Item Takes Equal Space] */
    flex: 1;
    min-width: 100px; /* Prevents Items from Getting Too Small on Smaller Screens */
}

/* TW Flex [div_middle] | Container Row 3/6 */
#Two_Witness_Flex__div_middle {
    display: flex;
    justify-content: space-around; /* Distributes Items Evenly Within The Container */
    align-items: center;
    grid-column: span 12; /* Makes The Flex Container Span All 12 Columns */
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    flex-wrap: wrap; /* Allows Items to Wrap if THey Exceed The Container Width */
}

.Two_Witness_Flex__div_middle_item {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    margin: 5px; /* Spacing Between Flex Items */
    text-align: center;
    /* Flexbox Properties for Individual Items [e.g. Each Item Takes Equal Space] */
    flex: 1;
    min-width: 100px; /* Prevents Items from Getting Too Small on Smaller Screens */
}

/* Two Witness Flex [div_Gods_Holy_Word_KJV] | Container Row 4/6 */
#Two_Witness_Flex__div_Gods_Holy_Word_KJV {
    display: flex;
    justify-content: space-around; /* Distributes Items Evenly Within The Container */
    align-items: center;
    grid-column: span 10; /* Makes The Flex Container Span All 12 Columns */
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    flex-wrap: wrap; /* Allows Items to Wrap if THey Exceed The Container Width */
}

.Two_Witness_Flex__div_Gods_Holy_Word_KJV_item_button {
    width: 2em;
    height: 2em;
    font-size: 16px;
    color: black; /* Font Color */
}

.Two_Witness_Flex__div_Gods_Holy_Word_KJV_item {
    background-color: gold;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: black; /* Font Color */
    padding: 15px;
    margin: 5px; /* Spacing Between Flex Items */
    text-align: center;
    /* Flexbox Properties for Individual Items [e.g. Each Item Takes Equal Space] */
    flex: 1;
    min-width: 100px; /* Prevents Items from Getting Too Small on Smaller Screens */
}

/* TW Flex [div_bottom} | Container Row 5/6 */
#Two_Witness_Flex__div_bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-around; /* Distributes Items Evenly Within The Container */
    align-items: center;
    grid-column: span 12; /* Makes The Flex Container Span All 12 Columns */
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    flex-wrap: wrap; /* Allows Items to Wrap if THey Exceed The Container Width */
}

.Two_Witness_Flex__div_bottom_item {
    background-color: navy;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: white; /* Font Color */
    padding: 15px;
    margin: 5px; /* Spacing Between Flex Items */
    text-align: center;
    /* Flexbox Properties for Individual Items [e.g. Each Item Takes Equal Space] */
    /*flex: 1; */
    /*min-width: 100px; /* Prevents Items from Getting Too Small on Smaller Screens */
}

/* TW Flex [div_footer] | Container Row */
#Two_Witness_Flex__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around; /* Distributes Items Evenly Within The Container */
    align-items: center;
    grid-column: span 12; /* Makes The Flex Container Span All 12 Columns */
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    flex-wrap: wrap; /* Allows Items to Wrap if THey Exceed The Container Width */

}

.Two_Witness_Flex__footer_item_GodsWrath_Productions_HEADER {
    background: linear-gradient(to right, red 50%, blue 50%);
    /*background-color: #98FB98; */
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    /*background-image: linear-gradient(to right, black 50%, white 50%); */
    /*color: black; /* Font Color */
    min-width: 100%;
    color: white;
    padding: 15px;
    margin: 5px; /* Spacing Between Flex Items */
    text-align: center;
    /* Flexbox Properties for Individual Items [e.g. Each Item Takes Equal Space] */
    /*flex: 1; */
    /*min-width: 100px; /* Prevents Items from Getting Too Small on Smaller Screens */
}

.Two_Witness_Flex__footer_item_GodsWrath_Productions_FOOTER {
    background: linear-gradient(to right, red 50%, blue 50%);
    /*background-color: #98FB98; */
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    /*background-image: linear-gradient(to right, black 50%, white 50%); */
    /*color: black; /* Font Color */
    min-width: 100%;
    color: white;
    padding: 15px;
    margin: 5px; /* Spacing Between Flex Items */
    text-align: center;
    /* Flexbox Properties for Individual Items [e.g. Each Item Takes Equal Space] */
    /*flex: 1; */
    /*min-width: 100px; /* Prevents Items from Getting Too Small on Smaller Screens */
}


.Two_Witness_Flex__footer_item {
    background-color: #98FB98;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: black; /* Font Color */
    padding: 15px;
    margin: 5px; /* Spacing Between Flex Items */
    text-align: center;
    /* Flexbox Properties for Individual Items [e.g. Each Item Takes Equal Space] */
    /*flex: 1; */
    /*min-width: 100px; /* Prevents Items from Getting Too Small on Smaller Screens */
}

/* TW Flex [div_bottom_song_woo_age} | Container Row 6/6 */
#Two_Witness_Flex__div_bottom_song_woo_age {
    display: flex;
    flex-direction: row;
    justify-content: space-around; /* Distributes Items Evenly Within The Container */
    align-items: center;
    grid-column: span 12; /* Makes The Flex Container Span All 12 Columns */
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ccc;
    flex-wrap: wrap; /* Allows Items to Wrap if THey Exceed The Container Width */
}

.Two_Witness_Flex__div_bottom_song_woo_age_item {
    background-color: forestgreen;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: white; /* Font Color */
    padding: 15px;
    margin: 5px; /* Spacing Between Flex Items */
    text-align: center;
    /* Flexbox Properties for Individual Items [e.g. Each Item Takes Equal Space] */
    /*flex: 1; */
    /*min-width: 100px; /* Prevents Items from Getting Too Small on Smaller Screens */
}