/* 
*    Theme Name: Niko-theme
*    Version:    1.0.13042023
*    Created on: 2023-04-13
*    Author:     Nikograf - Patryk Siuta
*    Author URI: http://www.nikoraf.pl
*    E-mail:     kontakt@nikograf.pl
*/
/* WordPress Core
-------------------------------------------------------------- */
@import "css/wp-core.css";
/*------------------------------------------------------------ */
/* Google Fonts import
-------------------------------------------------------------- */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAw.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAw.ttf) format('truetype');
}
/*------------------------------------------------------------ */
:root {
  --blue: #1e90ff;
  --white: #fff;
  --black: #000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}
::placeholder {
  color: var(--white);
}
::-ms-input-placeholder {
  color: var(--white);
}
h1 {
  line-height: 1.4em;
  text-transform: uppercase;
  font-weight: 900;
}
h2 {
  font-weight: 500;
}
p {
  line-height: 1.38em;
  font-weight: 300;
  margin-bottom: 30px;
}
body {
  padding-bottom: 40px;
  background-color: var(--white);
  background-repeat: no-repeat;
}
a {
  color: var(--black);
}
@keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
header {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
header h1,
header h2 {
  color: var(--white);
}
header svg {
  position: absolute;
  left: 50%;
  bottom: 10%;
  fill: white;
  transform: translateX(-50%);
  width: 45px;
  height: auto;
  animation: bounce2 2s ease infinite;
}
header span {
  color: var(--white);
}
.transition {
  transition: all 0.4s;
}
.container {
  margin: 0 auto;
}
.justify-text {
  text-align: justify;
}
@media (min-width: 992px) {
  body {
    background-image: url('images/listki1.webp'), url('images/listki2.webp'), url('images/listki3.webp'), url('images/listki4.webp');
    background-position: 0 90%, 100% 90%, 0 35%, 100% 55%;
    overflow-x: hidden;
  }
  h1 {
    font-size: 9em;
  }
  h2 {
    font-size: 60px;
  }
  .container {
    max-width: 1170px;
    padding-right: 20px;
    padding-left: 20px;
  }
  header {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 100 / 39;
    margin-bottom: 50px;
  }
  header span {
    font-size: 38px;
  }
  .alignfull {
    max-width: 100vw;
    width: 100vw;
    transform: translateX(calc(-50vw + 565px));
  }
  .alignwide {
    max-width: 100vw;
    width: 100vw;
    padding-left: calc(50vw - 565px);
    padding-right: calc(50vw - 565px);
    transform: translateX(calc(-50vw + 565px));
  }
}
@media screen and (max-width: 991px) {
  body {
    background-position: 0 35%, 100% 55%;
    background-image: url('images/listki3.webp'), url('images/listki4.webp');
  }
  h1 {
    font-size: 4em;
  }
  h2 {
    font-size: 50px;
  }
  header {
    aspect-ratio: 10 / 8;
    margin-bottom: 30px;
    padding-bottom: 80px;
  }
  header span {
    font-size: 18px;
    line-height: 45px;
  }
  header h2 {
    font-size: 1.5em;
  }
  header p {
    font-size: 38px;
  }
  header svg {
    width: 30px;
  }
  .container {
    max-width: 90%;
  }
}
/*# sourceMappingURL=./style.css.map */