* {
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
  background-image: url("/img/background.png");
  background-repeat: repeat;
  background-size: 25%;

  font-family: "Signika", sans-serif;
  color: white;
  padding: 20px;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:link:hover {
  text-decoration: underline;
}

.container {
  width: 50%;
  margin: auto;
}

.warning {
  padding: 20px;
  background-color: #433519;

  border-style: solid;
  border-color: #8b6b00;
  border-width: 1px;
  border-radius: 12px;
}

.warning > header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.content {
  display: flex;
  flex-direction: column;

  padding: 20px;
  margin-top: 20px;

  background-color: #0a0a0a;
  border-style: solid;
  border-color: #121212;
  border-radius: 12px;
  border-width: 1px;
}

.content > header {
  margin-bottom: 20px;
}

.poll-date {
  color: #777777;
}

.poll-result-box {
  margin-top: 10px;
}

.poll-result-bar {
  width: 100%;
  height: 10px;
  margin-top: 5px;

  background-color: #121212;
  border-style: solid;
  border-color: #212121;
  border-radius: 12px;
  border-width: 1px;
}

.poll-result-fill {
  height: 100%;
  border-radius: 10px;
}

#fill-yes {
  background-color: darkgreen;
}

#fill-no {
  background-color: crimson;
}

.button {
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 6px;

  text-align: center;
}

.button-enabled {
  background-color: midnightblue;
  cursor: pointer;
}

.button-enabled:hover {
  background-color: rgb(15, 15, 70);
}

.button-disabled {
  color: #777777;
  background-color: #333333;
  cursor: default;
}

.article-image {
  border-radius: 8px;
}

.image-text {
  color: #777777;
  margin: 8px 0 0 8px;
}

.article-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
}

.article-text {
  margin: 20px 0;
  font-size: 1.1em;
  text-align: justify;
}

p {
  margin: 10px 0;
}

cite {
  padding-left: 3%;
  margin: 20px 0;
  display: block;
  color: #bbb;
  border-left: 1px solid #bbb;
}

.dotychczas {
  color: #ddd;
}

@media screen and (max-width: 999px) {
  .container {
    width: 100%;
  }

  h1 {
    font-size: 1.8em;
  }
}
