@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    background-image: url('tlo-desktop.webp');
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Dodane */
  }

@media (max-width: 768px) {
  html, body {
    background-image: url('tlo-mobile.webp');
  }
}

.hero {
    padding: 2rem;
    text-align: left;
    margin-top: 5rem; /* Dodane */
    margin-bottom: 5rem; /* Dodane */
  }
  
.bold {
  font-weight: 700;
  font-size: 3rem;
  display: block;
}

.subtitle {
    font-weight: 300;
    font-size: 1.2rem; /* Zmniejszony rozmiar tekstu */
  }

  .download-link {
    font-size: 24px;
    display: block;
    margin-top: 3rem; /* Zwiększony odstęp */
    margin-bottom: 0rem;

    text-align: left;
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border: 2px solid rgb(255, 255, 255);
    padding: 0.5rem 1rem;
  }
  @media (max-width: 767px) {
    .download-link {
      font-size: 20px;
      background-color: #fff;
      color: #000;
    }
  
    .download-link:hover {
      background-color: #000;
      color: #fff;
    }
  }
.download-link:hover {
    background-color: #fff;
    color: #000;
  }

  .modal-container {
    z-index: 1000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
  .hidden {
    display: none;
  }
  
  .captcha-modal, .message-modal {
    background-color: #fff;
    color: #000;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
  }
  
  .captcha-modal button,
  .message-modal button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    cursor: pointer;
  }
  
  .captcha-modal button:hover,
  .message-modal button:hover {
    background-color: #333;
  }

  .white-box {
    background-color: #fff;
    color: #000;
    padding: 1rem;
    border: 1px solid #fff;
    max-width: max-content;
    border-radius: 5px;
    margin-bottom: 1rem;
  }
  
  .message-modal a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .message-modal a:hover {
    background-color: #333;
  }
  
  

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    padding: 1rem;
    margin-top: 1rem; /* Dodane */
  }

@media (min-width: 768px) {
  footer {
    flex-direction: row;
  }
}

footer a {
  color: #000;
  text-decoration: none;
  margin: 0 1rem;
}

.cookie-consent {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  padding: 1rem;
  z-index: 9999;
}

.cookie-consent-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  cursor: pointer;
}

.cookie-consent-btn:hover {
  background-color: #333;
}

.instagram-icon {
  width: 35px;
  height: 35px;
}

.download-description {
  font-size: 0.9rem;
  margin-top: 0.1rem;
  margin-bottom: 1.5rem;
  max-width: 30%;
  text-align: left;
  word-wrap: break-word;
}

@media (max-width: 767px) {
  .download-description {
    font-size: 0.8rem;
    max-width: 60%;
  }
}



/* Dodaj ten kod na końcu pliku styles.css */

@media (max-width: 767px) {
  footer a:first-child {
    margin-bottom: 20px;
    display: block;
  }
}




button {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

@media (max-width: 767px) {
  footer a:first-child {
    margin-bottom: 20px;
    display: block;
  }
}

