@font-face {
    font-family: bankghotic;
    src: local('/fonts/BankGothicBT-Medium.woff'), url('/fonts/BankGothicBT-Medium.woff') format('woff');
}

@font-face {
    font-family: Diploma;
    src: local('/fonts/diploma.woff'), url('/fonts/diploma.woff') format('woff');
}


* {
    margin: 0;
}

a {
    color: #435267;
    text-decoration: none;
    font-family: bankghotic;
}

a:hover {
    color: #6e89af;
    text-decoration: none;
    cursor: pointer;
}

body {
    background-image: url(/imgs/portfoliopage1.webp);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.contentHeader {
    height: 150px;
    margin-top: 50px;
    padding-left: 100px;
}

.contentHeader h1 {
    color: #a2c2e7;
    font-family: Diploma;
    font-size: 100px;
}

.content p {
    font-family: bankghotic, Arial;
}

.contentOdkazy {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 600px;
}

.contentOdkazy h2 {
    font-family: bankghotic;
    color: #435267;
    font-size: 60px;
    line-height: 1.3;
}

.contentFooter {
    height: 150px;
    display: flex;
    flex: 1;
    align-items: end;
}

.contentFooter p {
    top: 80%;
    color: whitesmoke;
    font-size: 18px;
}

.page2 {
    display: none;
}

html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contentFooter {
    display: flex;
    /* Zarovnání na střed */
    align-items: flex-end;
    /* Text vždy úplně dole */
    height: auto;
    /* Výška se přizpůsobí obsahu */
    min-height: 150px;
}

/* responzivita */
@media screen and (max-width: 1400px) {
    body {
        background-size: contain;
    }

    .contentOdkazy {
        height: 400px;
    }
}

@media screen and (max-width: 900px) {
    .contentHeader h1 {
        font-size: 70px;
    }

    .contentFooter {
        justify-content: center;
    }
}

@media screen and (max-width: 750px) {
    .contentOdkazy h2 {
        font-family: bankghotic;
        color: #435267;
        font-size: 40px;
        line-height: 1.3;
    }

    .contentHeader {
        height: 150px;
        margin-top: 50px;
        padding-left: 50px;
    }
}

@media screen and (max-width: 480px) {
    .contentOdkazy h2 {
        font-family: bankghotic;
        color: #435267;
        font-size: 28px;
        line-height: 1.9;
    }

    .contentHeader h1 {
        font-size: 40px;
    }

    .contentHeader {
        margin-top: 20px;
    }

    .contentOdkazy {
        height: 200px;
    }
}