@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed");
* {
    font-family: 'Roboto Condensed', sans-serif;
}

body {
    margin: 0;
}

.parallax-wrapper {
    perspective: 1px;
    transform-style: preserve-3d;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
}

.background {
    background-position: center;
    background-size: cover;
    display: flex;
    flex: 1 0 auto;
    position: relative;
    z-index: -1;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    transform: translateZ(-1px) scale(2);
}

.background--spring {
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/d/da/Precincts_of_Watari-jinja_shrine_in_Spring_season_2.JPG");
}

.background--summer {
    background-image: url("https://images.pexels.com/photos/375152/summer-sun-blooming-season-375152.jpeg?cs=srgb&dl=beautiful-bloom-blossom-375152.jpg&fm=jpg");
}

.background--fall {
    background-image: url("https://images.pexels.com/photos/33060/road-forest-season-autumn.jpg?cs=srgb&dl=autumn-fall-forest-33060.jpg&fm=jpg");
}

.background--winter {
    background-image: url("https://images.pexels.com/photos/235595/pexels-photo-235595.jpeg?cs=srgb&dl=branches-cold-season-235595.jpg&fm=jpg");
}

.title {
    position: absolute;
    margin: 0;
    top: calc(50% - 50px);
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    height: 100px;
    color: white;
    font-size: 5rem;
    background: rgba(0, 0, 0, 0.4);
}

.season-desc {
    z-index: 1;
    position: relative;
    background: #282E34;
    color: white;
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 2em;
    padding: 3rem;
    height: 100vh;
    margin: 0;
    display: flex;
}

.season-desc .desc-wrapper {
    margin: auto;
    box-sizing: border-box;
}

.season-desc .season--title {
    text-align: center;
    font-size: 4rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 20px 0;
}

.season-desc .season--about {
    margin-top: 50px;
    padding: 0;
}

@media (max-width: 998px) and (orientation: portrait) {
    .season-desc {
        padding: 1.5rem 20px;
        font-size: 1rem;
        height: unset;
        min-height: 100vh;
    }
    .season-desc .season-title {
        font-size: 2.5rem;
        margin: 20px 0;
        letter-spacing: unset;
    }
    .season-desc .season-about {
        margin-top: 20px;
    }
}

/* Next Button */

* {
    box-sizing: border-box;
}

.icon {
    display: block;
    width: 1.5em;
    height: 1.5em;
    margin: 0 auto;
    fill: currentColor;
}

.icon--arrow-right {
    transform: scale3d(-1, -1, 1);
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5em;
}

.next {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    bottom: 0;
    right: 0;
    z-index: 999;
}

.next-demo {
    position: relative;
    margin: 1.5em 2em;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
}

.next-demo a:hover, .next-demo a:focus {
    color: #42AB9E !important;
}

.hidden {
    width: 0;
    height: 0;
}