* {
   margin: 0px;
   padding: 0px;
   box-sizing: border-box;
}

/* General styles */
body {
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
   margin: 0;
   padding: 0;
}

.icon-tabler {
   width: 1em;
   height: 1em;
}

.page {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   text-align: center;
}

.content {
   text-align: center;
   padding: 20px;
}

.content h1 {
   font-size: 2rem;
   margin-bottom: 20px;
}

.content p {
   font-size: 1rem;
   margin-bottom: 15px;
}

.content img {
   max-width: 100%;
   height: auto;
   margin-bottom: 20px;
}

.content a {
   font-size: 1.2rem;
   color: blue;
   text-decoration: none;
   margin-bottom: 20px;
   display: inline-block;
}

iframe {
   max-width: 100%;
   height: 500px;
   border: 0;
   margin-top: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
   img[src="budowa1.jpg"] {
       display: none;
   }

   .content h1 {
       font-size: 1.5rem;
   }

   .content p {
       font-size: 0.9rem;
   }

   .content a {
       font-size: 1rem;
   }

   .content {
       padding: 10px; /* Add padding for smaller screens */
   }
}