/* style.css */

body {
    font-family: 'Helvetica', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #231F20; /* Set the background color */
    color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0rem;
}

.container table {
    width: 100%;
    border-collapse: collapse;
}

.container table th,
.container table td {
    padding: 10px; /* Add padding to table cells */
    vertical-align: top;
}

.container table th {
    font-weight: bold;
}

.container table td.logo {
    width: 150px;
}

.container table td.logo img {
    width: 60%;
    height: auto;
}

.container table td.column-split {
    width: 50%;
}

.container table td.column-split p {
    margin: 0;
}

.container table td.column-split p:first-child {
    margin-bottom: 1rem;
}

.container table td {
    width: 25%;
}

.container a {
    color: #6082B6;
    text-decoration: none;
}

.container a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    font-size: 10px;
    color: #666;
    padding: 10px;
    /*   background-color: #f0f0f0; */
}

/* Add the media query for mobile devices with a maximum width of 768px (adjust as needed) */
@media (max-width: 768px) {
    .container table {
        display: block;
        width: 100%;
    }

    .container table th,
    .container table td {
        width: 100%;
        display: block;
    }

    .container table td.logo {
        text-align: center; /* Center the logo in the column */
    }

    .container table td.column-split {
        text-align: center; /* Center the content in the column */
    }

    .container table td.logo img {
        display: block;
        margin: 0 auto; /* Center the image */
    }
}