.text {
  font-size: 55px;
  color: white;
  
}
.blur-box {
    width: 350px;
    height:500px;
    margin: 50px auto;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.3); /* białe, półprzezroczyste */
    backdrop-filter: blur(10px); /* efekt rozmycia */
    -webkit-backdrop-filter: blur(10px); /* wsparcie dla Safari */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    color: black;
    padding: 20px;
    text-align: center;
  }
.blur-box h1 {
    margin-top: 0;
}

body {
    font-family: Arial, sans-serif;
      background: linear-gradient(135deg, #a18cd1, #fbc2eb);
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
  }

.zdj{
  border-radius: 30px;
}

.download-btn {
  background-color: #0078d7;
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.download-btn:hover {
   background-color: #005ea8;
}

.icon {
  width: 30px;
  height: 30px;
}