/* CSS VARIABLES FOR EASY TWEAKING */
@font-face {
    font-family: Satoshi;
    src: url("Satoshi-Regular.otf") format("opentype");
}


:root {
    --color-black: #1e1e1e;
    --color-yellow: #ffef70;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

header, footer {
    display: flex;
    justify-content: space-between;
    flex-shrink: 0;
}

body {
    background-color: var(--color-black);
    font-family: "Satoshi";
    padding: 20px 19px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    display: flex;
    align-items: center;
    gap: 60px;
    color: var(--color-yellow);
    padding: 0 36px;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.container .logo {
    flex-basis: 70%;
    display: flex;
    align-items: center;
}

.container .logo img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.container .content {
    flex: 0 0 30%;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.container .content .jobs {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 80%;
    min-height: 300px;
}

.container .content .jobs-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: jobs-scroll 24s linear infinite;
}

.container .content .jobs-track span {
    display: block;
    width: max-content;
    font-size: 31px;
    line-height: 86%;
    letter-spacing: -0.1em;
    text-align: center;
    transform: scaleX(0.7);
}

.container .content .contact {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .content .contact img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}
@keyframes jobs-scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 1100px) {
    html, body {
        overflow: auto;
        min-height: 100%;
    }

    body {
        padding: 16px;
        gap: 20px;
    }

    .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
        flex: 0 0 auto;
        min-height: auto;
        height: auto;
        overflow: visible;
    }

    .container .logo {
        flex-basis: auto;
        width: 100%;
        justify-content: center;
    }

    .container .logo img {
        max-width: 100%;
    }

    .container .content {
        font-size: 21px;
        width: 100%;
        order: 2;
        overflow: visible;
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .container .content .contact {
        order: -1;
        width: 100%;
        margin-bottom: 16px;
    }

    .container .content .jobs {
        position: static;
        overflow: visible;
        width: 100%;
        height: auto;
        min-height: auto;
    }

    .container .content .jobs-track {
        animation: none;
    }

    .container .content .jobs-track span {
        width: max-content;
        font-size: 24px;
        line-height: 86%;
        letter-spacing: -0.1em;
        text-align: center;
        transform: scaleX(0.7);
    }
}

