@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans+Condensed&display=swap');
body {
    background: #f2f2f2;
}

header {
    height: 70px;
    width: 100%;
    display: grid;
    grid-template-rows: 22.5px 25px 22.5px;
    grid-template-columns: 1fr 1fr auto;
}

.textlogo {
    margin-left: 20px;
    margin-top: 5px;
    display: grid;
    grid-row: 1 / 4;
    grid-column: 1 / 2;
}

nav {
    display: grid;
    grid-row: 1 / 3;
    grid-column: end;
}

.container {
    display: grid;
    grid-template-columns: 10% 1fr 10%;
    width: 100%;
    height: 100%;
}

.container.lower {
    margin-top: 100px;
}

.leftContainer {
    display: grid;
    grid-column: 1;
    margin: auto;
    width: 110px;
    height: 564px;
}

.back {
    grid-template-columns: 1fr 10px 1fr;
    grid-template-rows: repeat(autofill, 40px);
}

.gridContainer {
    margin-top: 70px;
    display: grid;
    grid-column: 2;
}

.rightContainer {
    display: grid;
    grid-column: 3;
    margin: auto;
    width: 110px;
}

img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.grid {
    display: grid;
}

.grid-item {
    display: grid;
    width: 330px;
    height: 400px;
    float: right;
    margin-bottom: 15px;
}

section {
    display: grid;
    grid-column: 2;
    align-self: center;
    align-content: center;
}


/* Article Styling */

.projectcontent {
    margin-top: 40px;
    align-self: center;
}

.projectinfo {
    margin-top: -30px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: small;
    text-align: left;
    padding: 0;
    padding-bottom: 40px;
    color: #323536;
    line-height: 160%;
}

.projectinfo .left {
    text-align: justify;
}

.nl {}

.en {}

.technical {
    font-size: small;
    font-style: italic;
}

.materialsUsed {
    margin-top: -30px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 200;
    text-align: center;
    padding: 0;
    font-size: x-small;
    padding-bottom: 40px;
    color: black;
    line-height: 160%;
}


/* Arrow Styling */


/* arrow common style */

.arrow {
    display: grid;
    width: 15px;
    height: 15px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    margin-left: 20px;
    grid-column: 2;
    top: 500px;
}

.arrow-top {
    transform: rotate(-45deg);
}

.arrow-right {
    transform: rotate(45deg);
}

.arrow-bottom {
    transform: rotate(135deg);
}

.arrow-left {
    transform: rotate(-135deg);
}

.arrow-top-narrow {
    transform: rotate(-45deg) skew(-15deg, -15deg);
}

.arrow-top-wide {
    transform: rotate(-45deg) skew(7deg, 7deg);
}

.arrow-top-left {
    transform: rotate(-90deg) skew(-10deg, -10deg);
}

.arrow-top-right {
    transform: rotate(0) skew(-10deg, -10deg);
}

.arrow-bottom-left {
    transform: rotate(180deg) skew(-10deg, -10deg);
}

.arrow-bottom-right {
    transform: rotate(90deg) skew(-10deg, -10deg);
}


/* Image hovering and linking - !! Change names for better reading and correctness !! */

.location-listing {
    position: relative;
}

.location-image {
    line-height: 0;
    overflow: -moz-hidden-unscrollable;
    overflow: hidden;
}

.location-image img {
    filter: blur(0px);
    transition: filter 0.3s ease-in;
    transform: scale(1.1);
}

.location-title {
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    z-index: 1;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .5s;
    background: rgba(228, 222, 227, 0.4);
    color: black;
    font-variant: small-caps;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
    /* position the text in t’ middle*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-listing:hover .location-title {
    opacity: 1;
}

.location-listing:hover .location-image img {
    filter: blur(2px);
}


/* for touch screen devices */

@media (hover: none) {
    .location-title {
        opacity: 1;
    }
    .location-image img {
        filter: blur(2px);
    }
}


/* Image hovering and linking - !! Change names for better reading and correctness !! */

footer {
    padding-top: 50px;
    align-content: center;
}


/* Text styling */


/* H1 is styled for Brutalisme effect #QDW */

h1 {
    z-index: -1;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 86px;
    font-style: normal;
    font-variant: small-caps;
    font-weight: 700;
    line-height: 35.2px;
}

h2 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-variant: small-caps;
    font-weight: 700;
    line-height: 15.4px;
}

h3 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    line-height: 15.4px;
}

blockquote {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 21px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 30px;
}

pre {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 18.5714px;
}

.parent {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 7px;
    grid-row-gap: 8px;
}