/* Style dla strony głównej */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

h1,
h2,
h3,
h4,
h5 {
  color: #2c3e50;
}

img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 20px 0;
}

nav ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
  background-color: #4b0082;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.small-logo {
  max-width: 200px;
  margin: 0 auto;
}

/* Style dla instrukcji */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 30px;
}

.flex-text {
  flex: 1;
  min-width: 300px;
  padding-right: 20px;
}

.flex-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.note {
  background-color: #f0f0f0;
  border-left: 5px solid #4b0082;
  padding: 10px;
  margin: 20px 0;
}

.divider {
  border-top: 2px solid #4b0082;
  margin: 30px 0;
}

.icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 5px;
}

.big-text {
  font-size: 24px;
  font-weight: bold;
  color: #4b0082;
}

.small-text {
  font-size: 14px;
  color: #666;
}

.red-text {
  color: red;
}

@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }
  .flex-image {
    order: -1;
  }
}
