@charset "utf-8";

:root {
    --font-main: 'Outfit', Helvetica, sans-serif;
    --color-text: #333;
    --color-bg: #f8f8f8;
    --color-link: #666666;
    --color-link-hover: #005DAB;
    --container-width: 800px;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    /* modern base size */
    font-weight: normal;
    color: var(--color-text);
    background-color: var(--color-bg);
    position: relative;
    margin: 0;
    line-height: 1.5;
}

.container {
    max-width: var(--container-width);
    margin: 120px auto;
    text-align: center;
    padding: 20px;
}

@media all and (max-width:768px) {
    .container {
        margin-top: 60px;
    }
}

.g-brands {
    margin: 20px 0;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.g-brands a {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 200ms ease-out;
    padding: 10px;
    /* Add breathing room */
}

.g-brands img {
    vertical-align: middle;
    transition: transform 0.2s ease;
    width: auto;
    /* Allow natural width */
    max-height: 80px;
    /* Cap height to ensure uniformity */
}

.g-brands a:hover img {
    transform: scale(1.05);
}

a {
    color: var(--color-link);
    text-decoration: none;
    transition: color 200ms ease-out;
}

a:hover {
    color: var(--color-link-hover);
}

.footer {
    color: var(--color-text);
    font-weight: 400;
    margin-top: 40px;
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}