/* Ten plik CSS jest już gotowy — nie musisz go zmieniać! */
/* Styluje on Twoją stronę automatycznie. */

body {
  font-family: Arial, sans-serif;
  background-color: #0f172a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  margin: 0;
}

.card {
  background: #1e293b;
  color: #e2e8f0;
  max-width: 500px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

h1 {
  color: #7dd3fc;
}

h2 {
  color: #94a3b8;
}

img {
  width: 100%;
  border-radius: 8px;
  margin: 16px 0;
}

a {
  display: inline-block;
  margin-top: 16px;
  color: white;
  background: #6366f1;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
}

a:hover {
  background: #4f46e5;
}

.row {
  display: flex;
  gap: 10px;
}

.row img {
  height: 230px;
  width: auto;
}