* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Dosis", sans-serif;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  /* zapobiega przewijaniu */
  background-color: #0E1A28;
}

img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.slogan {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 99;
  color: #9b9367;
}

.footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 1px 01px 5px #000;
          box-shadow: 1px 01px 5px #000;
}

.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer ul li {
  list-style: none;
  margin: 10px;
}

.footer ul li i {
  color: #978729;
}
/*# sourceMappingURL=main.css.map */