#download {
    background-color: #f1f7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


/* NADPIS */

.downloadHeader {
    margin-top: 5%;
    margin-bottom: 5%;
    display: flex;
    justify-content: center;
}


/* KARTY */

.downloadCardsContainer {
    width: 40%;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
}

.downloadCard {
    width: 100%;
    padding: 32px 32px;
    border-radius: 16px;
    box-shadow: 1px 2px 7px 0 rgba(0,0,0,0.1);
    background-color: #fff;
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 7%;
}

.downloadButton {
    width: 30%;
    margin: auto;
    padding: 15px 20px;
    color: #fff;
    background-color: #0068e9;
    border: none;
    border-radius: 12px;
    font-weight: 400;
    font-size: 1.1rem;
    transition-duration: 0.2s;
}

.downloadButton:hover {
    background-color: #004dac;
}

.downloadCard h3 {
    margin-bottom: 2%;
}

.downloadCard h4 {
    color: #0068e9;
    font-weight: 500;
    margin-bottom: 1%;
}

.downloadCard h5 {
    color: #0068e9;
    font-weight: 300;
    margin-top: 2%;
    margin-bottom: 5%;
}

#borderedCard {
    border: 4px solid #0068e9;
}


/* TEXT */

.downloadText {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.downloadLinks {
    width: 40%;
    margin-top: 2%;
    margin-bottom: 5%;
    display: flex;
    justify-content: space-around;
}

.downloadLinks img {
    min-width: 250px;
    max-width: 500px;
}


@media only screen and (max-width: 1300px) {

    /* KARTY */
    .downloadButton {
        width: 50%;
    }

    /* TEXT */
    .downloadLinks {
        width: 70%;
        margin-top: 2%;
        margin-bottom: 5%;
        display: flex;
        justify-content: space-around;
    }
}

@media only screen and (max-width: 850px) {

    /* NADPIS */
    .downloadHeader {
        width: 70%;
        margin-top: 15%;
        margin-bottom: 10%;
        display: flex;
        justify-content: flex-start;
    }

    /* KARTY */
    .downloadCardsContainer {
        width: 80%;
        display: inline-flex;
        justify-content: center;
    }

    .downloadCard {
        width: 100%;
        padding: 32px 32px;
        border-radius: 16px;
        box-shadow: 1px 2px 7px 0 rgba(0,0,0,0.1);
        background-color: #fff;
        display: inline-flex;
        flex-direction: column;
        text-align: center;
    }

    /* TEXT */
    .downloadLinks {
        width: 50%;
        margin-top: 2%;
        margin-bottom: 5%;
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
    }

    .downloadLinks img {
        min-width: 150px;
        max-width: 500px;
        margin-bottom: 10%;
    }
}

@media only screen and (max-width: 550px) {

    /* KARTY */
    .downloadButton {
        width: 70%;
        margin: auto;
        padding: 15px 20px;
        color: #fff;
        background-color: #0068e9;
        border: none;
        border-radius: 12px;
        font-weight: 400;
        font-size: 1rem;
        transition-duration: 0.2s;
    }

    .downloadCard h3 {
        margin-bottom: 4%;
    }

    .downloadCard h5 {
        margin-top: 5%;
        margin-bottom: 7%;
    }
}
