:root {
  --main-color: #4caf50;
  --main-color-hover: #5b8457;
  --text-color: #e0e0e0;
  --header-height: 100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

a {
  display: inline-block;
  margin: 10px 15px;
  padding: 10px 20px;
  user-select: none;
  color: white;
  background-color: var(--main-color);
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  background-color: var(--main-color-hover);
}

a i {
  margin-right: 8px;
}

a.underscore {
  display: inline;
  background: none;
  color: inherit;
  padding: 0;
  margin: 0;
  line-height: inherit;
  vertical-align: baseline;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  border-radius: 0;
  transition: color 0.3s ease;
}

a.underscore:hover {
  color: var(--main-color);
  text-decoration-color: var(--main-color);
}

ul {
  list-style-type: none;
  padding-left: 1.5em;
  margin: 0.5em 0;
}
ul li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 25px; /* przesunięcie tekstu, żeby nie nachodził na ikonę */
}
ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em; /* dopasuj do wysokości tekstu */
  width: 16px; /* szerokość SVG */
  height: 16px; /* wysokość SVG */
  background-image: url("../favicon.ico"); /* Twoja ikonka SVG */
  background-size: contain;
  background-repeat: no-repeat;
}
img {
  user-select: none;
  /*Disable dragging*/
  -webkit-user-drag: none; /* Chrome, Safari */
  -khtml-user-drag: none;
  -moz-user-drag: none; /* Firefox */
  -o-user-drag: none;
}
body {
  background-color: #1b1b1b;
  color: #e0e0e0;
  line-height: 1.6;
  height: 100%;
}

section {
  padding: 30px 20px;
  max-width: 1300px;
  margin: auto;
}

.section-no-width-limited {
  padding: 30px 20px;
  margin: auto;
  max-width: none;
}
