*, :after, :before {
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Source Sans Pro', helvetica, arial;
    font-size: 18px;
    font-weight: 300;
}

body, p, h1, h2, h3 {
    margin: 0;
    padding: 0;
}

p, h1, h2 {
    text-shadow: 0 0 5px rgba(0, 0, 0, .6);
    width: 100%;
}

h1, h2 {
    font-size: 40px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

h1 {
    margin-bottom: 10px;
    margin-top: -2px;
}

h2 {
    margin-bottom: 20px;
}

p {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0;
    letter-spacing: .02rem;
    line-height: 1.3;
    margin-bottom: 20px;
}
p:last-child {
    margin-bottom: 0;
}
p.p--credits {
    font-size: 14px;
    font-size: .9rem;
}
p strong {
    display: inline-block;
    margin-bottom: 2px;
}

a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
a.a--no-weight {
    font-style: italic;
    font-weight: 300;
}

.container {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 15px;
    position: relative;
    width: 100%;
}
.container--big {
    height: 175vh;
}
.container--full {
    height: 100vh;
}
.container--small {
    height: 40vh;
}
.container .content {
    background: rgba(0, 0, 0, .75);
    border-radius: 8px;
    color: #fff;
    margin: 0 auto;
    padding: 30px 35px;
    text-align: center;
}

.parallax__container {
    clip: rect(0, auto, auto, 0);
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -100;
}
.parallax__container .parallax {
    /* can be put in a seperate class for better control */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* --------------------------- */
    position: fixed;
    top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 100%;
}


.grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
    .grid { grid-template-columns: repeat(4, 1fr); }
}


.img {
    height: 100px;
    background-color: lightgrey;
    background-size: cover;
    background-position: center;
    border-radius: .3em;
}



.card h3, p {
    max-width: 52ch;
    line-height: 1.5;
    color: black;
    font-size: 15px;
}


.item {
    width: 100px;
    background-color: white;
    align-items: center;
    margin: 0 auto;
    border-radius: .5em;
    -webkit-box-shadow: 0px 29px 38px -15px rgba(0, 0, 0, 0.43);
    -moz-box-shadow: 0px 29px 38px -15px rgba(0, 0, 0, 0.43);
    box-shadow: 0px 29px 38px -15px rgba(0, 0, 0, 0.43);
}