body > header {
    position: relative;
    width: 100%;
    height: 70vh;
    font-family: 'thewitcher', sans-serif;
    font-size: 350%;
    letter-spacing: 3px;
    text-shadow: 3px 3px 2px rgba(0,0,0,.7);
    background: url("../img/banner.jpg") center center no-repeat fixed;
    background-size: cover;
    margin-bottom: 2rem;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

body > header > section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

body > header > section > h1 {
    font-size: 4.5rem;
}

body > header > section > img {
    filter: invert(1) drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
}

.slider {
    position: relative;
    width: 500px;
    height: 350px;
    list-style: none;
}

.wrapper {
    overflow: hidden;
    position: relative;
    width: 500px;
    height: 350px;
    z-index: 1;
    background-size: cover;
    border-radius: 3px;
    margin: 0 auto;
}

.wrapper img {
    image-rendering: pixelated;
    margin: 0 auto;
    height: 100%;
}

.slides {
    display: flex;
    position: relative;
    top: 0;
    left: -500px;
    width: 10000px;
    margin: 0;
    padding: 0;
}

.slides.shifting {
    transition: left 0.2s ease-out;
}

.slide {
    width: 500px;
    height: 350px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    transition: all 1s;
    position: relative;
    background: transparent;
    background-size: cover;
    border-radius: 2px;
    padding: 0;
    margin: 0;
}

.slider.loaded {
    background: #FFF;
}

.control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.prev,
.next {
    background-size: 22px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.prev {
    background-image: url(https://cdn0.iconfinder.com/data/icons/navigation-set-arrows-part-one/32/ChevronLeft-512.png);
    left: 0;
}

.next {
    background-image: url(https://cdn0.iconfinder.com/data/icons/navigation-set-arrows-part-one/32/ChevronRight-512.png);
    right: 0;
}

p.pill {
    display: inline-block;
    background-color: #eee;
    border-radius: 30px;
    padding: .5rem 1rem;
    margin: 0 1rem 1rem;
}

article.characters {
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    margin: 0 auto 2rem;
}

article {
    padding: 1rem 1rem 3rem;
}

article.characters > *:nth-child(1) {
    width: 100%;
}

.characters .info {
    margin-left: 5rem;
    flex: 1;
}

p.pill:first-of-type {
    margin: 0 0 1rem;
}

article > header > h2 {
    font-size: 250%;
}

article > header > small {
    font-size: 150%;
}

article.characters > header, article.triple-cards > header {
    margin-bottom: 3rem;
}

#name {
    margin-bottom: 1rem;
    font-size: 180%;
}

article.series,  article.shop {
    background: url("../img/series-banner.png") center top no-repeat;
    background-size: cover;
    height: 300px;
    filter: brightness(140%) saturate(150%);
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin-bottom: 3rem;
}

article.series > header,  article.shop > header {
    margin-left: 20%;
    text-shadow: 1px 1px 0.5px rgba(0,0,0,.4);
}

article.series > header > h2, article.shop > header > h2 {
    margin-bottom: .5rem;
}

article.series > header > button, article.shop > header > button {
    display: block;
    margin-top: 1rem;
    padding: .7rem;
    background-color: rgba(0,0,0,.8);
    color: #FFF;
    border: 1px solid rgba(0,0,0,1);
    font-family: 'Open Sans', sans-serif;
    font-size: 110%;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 200ms;
}

article.series > header > button:hover,  article.shop > header > button:hover {
    background-color: rgba(0,0,0,.9);
}

#character-description {
    font-size: 120%;
}

article.triple-cards > ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    list-style: none;
}

article.triple-cards li {
    text-align: center;
    margin: 0 1rem 3rem;
}

article.triple-cards a {
    color: #000;
    text-decoration: none;
}

article.triple-cards {
    width: 85%;
    margin: 0 auto;
}

article.triple-cards hr {
    border-image-source: linear-gradient(
            180deg
            , rgba(255,255,255,1) 0%, rgb(154 154 154) 25%, rgb(154 154 154) 75%, rgba(255,255,255,1) 100%);
    border-image-slice: 1;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

article.triple-cards img {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    margin-bottom: 1rem;
}

article.triple-cards h3 {
    font-size: 150%;
}

article.triple-cards > ul > li small {
    font-size: 120%;
}

article.triple-cards a:hover > img {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

article.summary {
    margin: 0 auto;
    flex-wrap: wrap;
    width: 85%;
    display: flex;
}

article.summary header {
    width: 100%;
    margin-bottom: 2rem;
}

article.summary .artwork {
    margin-top: -2rem;
}

article.summary .artwork img {
    width: 600px;
}

article.summary .text {
    font-size: 120%;
    flex: 1;
    margin-right: 5rem;
    display: block;
}

article.shop {
    background: linear-gradient( rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) ), url("../img/market.jpg") center 28% no-repeat;
    filter: saturate(110%);
    background-size: cover;
}

@media only screen and (max-width: 1180px) {
    .characters .info {
        margin-left: 0;
        width: 100%;
        flex: unset;
    }
    .characters .slider {
        margin: 0 auto 1rem;
    }
    article.summary .artwork {
        width: 100%;
        margin-top: 3rem;
    }
    article.summary .text {
        margin-right: 0;
    }
}

@media only screen and (max-width: 950px) {
    body > header > section > h1 {
        font-size: 3.5rem;
    }
    article.summary .artwork img {
        width: 500px;
    }
}

@media only screen and (max-width: 600px) {
    .slide, .wrapper, .slider {
        width: 320px;
    }
    .slides {
        left: -320px;
    }
    #country.pill {
        margin-left: 0;
    }
    article.series > header, article.shop > header {
        margin: 1rem;
    }
    article.series, article.shop {
        justify-content: center;
    }
    article.series small, article.shop small {
        display: block;
    }

    article.summary .artwork img {
        width: 350px;
    }
}

@media screen and (min-width: 601px) {
    h2.naglowek1 {
      font-size: 8vw;
    }
  }
  
  @media screen and (max-width: 600px) {
    h2.naglowek1 {
      font-size: 3vw;
    }
  }
