:root {
  --background: #111111;
  --accent-color: #ff5c00;
  --text-color: #ffffff;
  --secondary-color: #1b1b1b;
}
* {
  margin: 0;
  padding: 0;
}
html {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-size: 1rem;
  color: var(--text-color);
  background-color: #111111;
}
body {
  width: 100%;
  overflow: hidden;
}
body h2 {
  font-size: 24px;
  font-weight: 400;
}
#wrapper {
  width: 100%;
  height: 50vw;
  background-image: url(./img/przyciemniony\ 1.png);
  background-size: cover;
  display: flex;
  justify-content: end;
}
#box {
  padding: 6% 0 20% 0;
  width: 34.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#licznik {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#demo {
  width: 80%;
  margin: 1rem;
  padding: 1rem;
  border: solid 1px var(--accent-color);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  font-size: 64px;
  font-weight: 100;
  cursor: default;
  transition: 0.2s ease;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}
#demo:hover {
  background-color: #ff5c00;
}
@media only screen and (max-width: 600px) {
  body {
    display: flex;
    align-items: stretch;
  }
  #wrapper {
    background-image: url(./img/przyciemniony\ 1.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    height: 100vh;
  }
  #box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 30%;
  }
  footer {
    width: 100%;
    justify-content: space-between;
  }
  #footer-wrapper ul {
    display: flex;
    align-items: center;
  }
  #demo {
    text-align: center;
  }
}
footer {
  height: 4rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
}
#footer-wrapper {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer-wrapper ul {
  display: flex;
  list-style: none;
  padding: 0.5rem 0;
}
#footer-wrapper ul li {
  margin: 0 0 0 1rem;
}
#footer-wrapper ul li svg {
  fill: #ffffff;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}
#footer-wrapper ul li:hover svg {
  fill: var(--accent-color);
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
footer p {
  font-weight: 300;
  font-size: 14px;
}
