@font-face {
    font-family: 'TCCC Unity Text';
    src: url('/participating-markets/fonts/TCCC-UnityText-Regular.woff');
}

@font-face {
    font-family: 'TCCC Unity Headline';
    src: url('/participating-markets/fonts/TCCC-UnityHeadline-Medium.woff');
}

html, body {
    height: 100%;
}

body {
    font-family: 'TCCC Unity Text';
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #EEEEEE;
    color: #1E1E1E;
    background-image: url('/participating-markets/images/full-background.jpg');
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
}

header {
    text-align: center;
    padding: 1rem 2rem;
    background-color: #fff;
    margin-bottom: auto;
}

header img {
    width: 192px;
    height: 32px;
}

main {
    text-align: center;
    margin: auto;
}

section h1 {
    font-family: 'TCCC Unity Headline';
    font-size: 32px;
}

section img {
    width: 70%;
    border-radius: 12px;
}

.primary-text {
    line-height: initial;
    border-radius: 12px;
    background-color: #fff;
    padding: 30px 80px;
    box-shadow: 0px 6px 15px -2px #10182814;
}

footer {
    background-color: #000;
    padding: 30px 0;
    margin-top: auto;
}

.footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-list li:after {
    content: "";
    width: 2px;
    height: 10px;
    margin: 0 10px;
    display: inline-block;
    background-color: #4D4C4C;
}
.footer-list li:last-child:after {
    display: none;
}
.footer-list li a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
}
/* Desktop Styles */
@media (max-width: 1023px) {
    body {
        background-image: url('/participating-markets/images/full-background-mobile.jpg');
    }
    main {
        width: 360px;
    }
    section h1 {
        font-size: 28px;
    }

    section br {
        display: none;
    }

    .primary-text  {
        padding: 30px;
    }

    footer {
        padding: 10px 0;
    }

    .footer-list  {
        display: block;
        text-align: center;
    }

    .footer-list li:after {
        display: none;
    }
}