
:root {
    --orange: #E78200;
    --blue: #296575;
    --black: #0A0903;
    --white: #F4FAFF;
    --transparent: rgba(0, 0, 0, 0);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    all: unset;
}

.header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: calc(100vw - 50px);

    position: fixed;
    height: 100px;
    background-color: var(--black);
    color: var(--white);
    padding: 0 50px;
}

.header > .header-left {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header > .header-left > a {
    cursor: pointer;
}

.header > .header-left > h1:hover {
    color: var(--orange);
}

.header > .header-right {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr;
}

.header > .header-right > h1 {
    font-size: 40px;
    cursor: pointer;
    padding: 0 10px;
}

.header > .header-right > h1:hover {
    color: var(--orange);
}

.f {
    margin: 20px 30px;
    cursor: pointer;
}

.landing-img {
    margin-top: 100px;
}


.content {
    margin: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pic {
    background-image: url("../media/background_2.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 650px;
}

.thin > * {
    text-align: center;
}

.rolunk {
    margin: 50px 0;
}

.rolunk > * {
    font-size: 26px;
}

.rolunk > h1 {
    font-size: 40px;
}

.munkaink {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 100px;
    margin: 0 150px;
}

.munkaink > img {
    width: 100%;
    height: 100%;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: var(--black);
    padding: 25px 0;
}

.footer > * {
    color: var(--white);
}

.footer > div > h3 {
    margin: 10px 0;
}
.footer > div > h1 {
    margin:  5px 0;
}

#rolunk, #munkaink, #elerhetoseg {
    scroll-margin-top: 100px;
}


.ck {
    position: fixed;
    width: 100%;
    height: 50px;
    bottom: 0;
    background-color: var(--black);
    color: var(--white);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.adatvedelem {
    text-decoration: underline;
    cursor: pointer;
}

.analytics-content {
    padding-top: 100px;
    margin: 0 50px;
}

.partner-pages {
    margin: 150px 0 50px 50px;
}

.partner-pages > p {
    font-size: 25px;
    margin: 5px 0;
}

.partner-pages > a {
    all: revert;
    font-size: 25px;
    cursor: pointer;
    text-decoration: unset;
}


@media (max-width: 960px) {
    .header {
        position: relative;
        display: flex;
        flex-direction: column;
        display: block;
        height: 100%;
        padding: 0;
        width: 100vw;
    }

    .header > .header-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .header > .header-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .landing-img {
        margin: 0;
    }

    .content > .munkaink {
        display: flex;
        flex-direction: column;
    }

    .footer {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .footer > * {
        text-align: center;
    }
}
