﻿

.content {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 100;
}

    .content .row {
        display: flex;
        /*border: 1px solid #0A0E36;*/

        border: 1px solid black; /* Viền đen */
        padding: 10px; /* Khoảng cách bên trong */
        margin-bottom: 5px; /* Khoảng cách giữa các hàng */
        border-radius: 5px; /* Bo góc nhẹ */
    }


footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: var(--header-title-color2);
    /* bottom: 0; */
}

    footer img {
        height: 60px;
        aspect-ratio: 21 / 8;
    }



@media (max-width: 992px) {

    .content .row {
        justify-content: space-between;
        align-items: center;
    }

        .content .row * {
            width: 100%;
        }
}