﻿.index-body-div {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-content: center;
    text-align: center;
    padding-top: 0.75rem;
}


.Tax-Cover {
    width: 100%;
    min-height: 200px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)),url(../images/BTax-Home.jfif);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Cover-Overlay {
    width: 70%;
    color: white; /* Text color */
    font-size: 42px; /* Text size */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional: Add shadow for better readability */
    z-index: 1; /* Ensure the text is on top of the image */
    margin: 0;
}

@media (max-width: 1000px) {

    .Cover-Overlay {
        font-size: 32px !important;
    }
}

@media (max-width: 767px)
{
    .Cover-Overlay {
        font-size: 24px !important;
    }
}


@media (max-width: 450px)
{
    .Tax-Cover {
        min-height: 200px !important;
    }

    .Cover-Overlay {
        font-size: 16px !important;
    }
}


