#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;
}

/* DELETE ACCOUNT */
.deleteUserHeader {
  margin-top: 1%;
  margin-bottom: 5%;
  display: flex;
  justify-content: center;
}

/* KARTY */

.downloadCardsContainer {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  column-gap: 30px;
}
.fullWidth {
  max-width: 50%;
  grid-column-start: span 2;
}

.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;
  justify-content: center;
  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;
  margin-top: 5%;
}
.submitButton {
  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;
  margin-top: 5%;
}
.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: 3%;
  display: flex;
  justify-content: space-around;
}

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

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

.webButton {
  width: auto;
  margin: 2% auto;
  padding: 15px 20px;
  color: #fff;
  background-color: #0068e9;
  border: 2px solid #074dac;
  border-radius: 12px;
  font-weight: 400;
  font-size: 1.4rem;
  transition-duration: 0.2s;
}

@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: center;
  }

  /* KARTY */
  .downloadCardsContainer {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-items: center;
  }
  .fullWidth {
    max-width: 100%;
  }

  .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%;
  }
}
