/* Example CSS file */ 
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* GLOBAL STYLES */
* {
  font-family: 'Fira Sans', serif;
  color: inherit;
}

body {
  background-color: #f8f8f8;
  color: #14161f;
  display: flex;
  height: auto;
  width: auto;
  margin: 0;
  justify-content: center;
}

hr {
  color: #14161f;
  background-color: #14161f;
  height: 3px;
  border: none;
}

blockquote {
  font-style: italic;
  font-size: 1.2em;
}

.container {
  padding: 25px 45px 30px 45px;
  width: 100%;
  margin: auto;
}

.webContent {
  width: 100%;
}

a {
  text-decoration: none;
}
a:hover {
  color: #2c3145;
}

footer {
  display: grid;
  place-items: center; /* Środkuje jednocześnie w X i Y */
  font-weight: 400;
}


@media (min-width: 320px) and (max-width: 629px) {
  .container {
    padding: 20px 15px;
  }
  footer > p {
    font-size: 1.3em;
    text-align: center;
  }
}
@media (min-width: 630px) and (max-width: 1024px) {}