body {
  background-image: url("img/tlo.png");
  font-size: 22px;
  margin: 0;
  padding: 0;
}
#header {
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: aliceblue;
  justify-content: space-between;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
body > header {
  height: 100px;
  width: 150px;
}

header img {
  margin-top: 15px;
  margin-left: 15px;
  height: 70px;
}
#hamburger {
  margin-right: 20px;
  margin-top: auto;
  margin-bottom: auto;
  height: 50px;
  width: 50px;
  cursor: pointer;
}
nav {
  font-family: "Alkatra", cursive;
  font-family: "Shadows Into Light", cursive;
  font-weight: 700;
  width: 100%;
  display: flex;
  align-items: center;
  display: none;
}
nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  list-style-type: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
nav ul a {
  text-decoration: none;
  font-size: 20px;
  color: rgb(255, 255, 255);
}
nav ul a:hover {
  color: rgb(208, 4, 4);
}
main {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
main h1 {
  font-family: "Alkatra", cursive;
  font-family: "Shadows Into Light", cursive;
  font-weight: 700;
  text-align: center;
  letter-spacing: 4px;
  text-shadow: 11px 12px 8px rgba(11, 11, 12, 1);
  margin-bottom: 40px;
}
.container {
  background-color: rgba(12, 12, 12, 0.99);
  color: aliceblue;
  padding-bottom: 20px;
}
.topimage {
  width: 80%;
  max-width: 600px;
  padding-top: 30px;
  margin: 0 auto;
}
.topimage img {
  width: 100%;
}
.mainarticle {
  max-width: 700px;
  padding: 40px 20px;
  margin-right: auto;
  margin-left: auto;
}
.articleheader {
  background-color: #8a2be2;
  display: inline-block;
  font-size: 35px;
  padding: 3px;
}
.mainarticle p {
  margin-left: 10px;
  margin-top: 8px;
}
p img {
  float: left;
  width: 100px;
  padding-right: 7px;
}
#kontakt {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 10px;
  background-color: rgba(103, 103, 108, 0.593);
  border-radius: 20px;
  width: 320px;
  box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
}
.opis {
  width: 120px;
  text-align: right;
}
.opisipole {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
}
.pole input,
textarea {
  background-color: rgba(125, 126, 128, 0.648);
}
.projectsimg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 15px;
  width: 90%;
  max-width: 800px;
}
.projectsimg a {
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  color: white;
  text-decoration: none;
}
.projectsimg img {
  width: 100%;
}
ol li {
  margin-bottom: 15px;
}
#button {
  color: white;
  height: 30px;
  width: 80px;
  border-radius: 5px;
  font-size: 15px;
  background-color: rgb(46, 46, 47);
}
section.oferta {
  border: 1px solid rgb(0, 0, 0);
  background-color: rgb(244, 244, 244);
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  max-width: 420px;
}
h2.oferta {
  margin-bottom: 3px;
}
.cena {
  font-size: 30px;
  letter-spacing: 2px;
  background-color: rgb(37, 37, 37);
  color: white;
}
li.oferta {
  color: blue;
}
ul.opcje {
  padding-left: 0;
  list-style-type: none;
}
ul.opcje li {
  border-bottom: 1px black dotted;
  font-size: 18px;
  margin-bottom: 5px;
}
#danekontakt {
  padding: 10px;
  max-width: 400px;
  background-color: black;
  color: white;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}
#danekontakt ul {
  padding-left: 5px;
}
#danekontakt ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
#danekontakt a {
  font-size: 22px;
  text-decoration: none;
  color: white;
}
#danekontakt i {
  margin-right: 10px;
}
#danekontakt a:hover {
  color: rgb(208, 4, 4);
}
::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(0, 0, 0);
  opacity: 1; /* Firefox */
}
footer {
  border-top: 3px black solid;
  padding-top: 7px;
  padding-bottom: 7px;
  display: flex;
  justify-content: space-around;
}
footer a {
  text-decoration: none;
  color: black;
}
#email {
  display: none;
}
@media screen and (min-width: 600px) {
  #header {
    flex-wrap: nowrap;
  }
  #hamburger {
    display: none;
  }
  nav {
    display: flex;
  }
  nav ul {
    flex-direction: row;
  }
  main h1 {
    font-size: 48px;
  }
  #email {
    display: block;
  }
}
