* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
    background: #FBFBFB;
}
::-moz-selection { /* Code for Firefox */
  color: #FFFFFF;
  background: #EA4C89;
}
::selection {
  color: #FFFFFF;
  background: #EA4C89;
}
.wrapper {
    width: 100%;
    margin: 0px;
    display: grid;
    grid-template-columns: 100%;
}
.item:nth-child(even) {
    background: #555555;
}
.header {
    background: #F4F4F4;
    height: 60px;
}
.logo {
    top: 0;
    left: 0;
    max-width: auto;
    margin-top: 6px;
    height: 36px;
    place-items: center;
}

/* navigation */
.nav-container {
    background: #FFFFFF;
    text-align: center;
    position: fixed;
    z-index: 999; /* Always on top */
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #DBDBDB;
}
.nav-toggle {
    display: none;
}
.nav-toggle:checked ~ nav {
    /*display: block;*/
    transform: scale(1, 1);
}
.nav-toggle:checked ~ nav a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 250ms;
}
.nav-toggle-label {
    color: #555555;
    position: absolute;
    top: 3px;
    left: 0;
    margin-left: 1em;
    height: 100%;
    display: flex;
    align-items: center;
}
input[type=checkbox]:checked ~ div {
    display: none;
}
nav {
    background: #E0E0E0;
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    width: 100%;
    padding-top: 16px;
    /*display: none;*/
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 400ms ease-in-out;
    border-top: 1px solid #DFDFDF;
}
nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
nav li {
    margin-bottom: 1em;
    margin-left: 1em;
}
nav a {
    color: #555555;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
    padding: 6px;
}
nav a:hover {
    color: #fff;
    border-radius: 4px;
    background-color: #EA4C89;
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
	text-transform: capitalize;
	transition: opacity 150ms ease-in-out;
}

/* Sections */
.wrapper-content {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 768px) 1fr;
}

/* Landing */
.intro {
    background: #F9F9F9;
    color: #555555;
    padding-top: 64px;
    padding-bottom: 72px;
    padding-left: 16px;
    padding-right: 16px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    width: auto;
}
.intro-img {
    background: #F9F9F9;
}
.intro-img img {
    display: block;
    width: 0px;
    height: 0px;
}
.title-landing {
    color: #555555;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 48px;
    margin-bottom: 12px;
}
.button1 { 
    background-color: #EA4C89;
    border: none;
    color: #F9F9F9;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 12px 24px;
    margin-top: 20px;
    margin-left: 0px;
    cursor: pointer;
    border-radius: 4px;
}
.button1:hover {
    background-color: #DF3E7B;
}
.button1:active {
    background-color: #DF3E7B;
}
.item1 {
    background: #F9F9F9;   
}
.item3 {
    background: #F9F9F9;   
}
    
/* Projects */
.projects {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(auto,1fr));
    padding-left: 16px;
    padding-right: 16px;
}
.projects a {
    text-decoration: none;
}
.projects a:hover {
    text-decoration: none;
}
.projects a:active {
    text-decoration: none;
}
.projects img {
    background: #F9F9F9;
    margin: -4px;
    padding: 0px;
}
.title-projects {
    color: #EA4C89;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
}
.project-item {
    box-sizing: border-box;
    text-align: center;
    padding: 0px;
    margin-bottom: 8px;
    border-radius: 2px;
}
.project-img {
    background: #F9F9F9;
    padding-top: 14px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    border-radius: 2px 2px 2px 2px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.10), 0 6px 16px 0 rgba(0, 0, 0, 0.10);
}
.project-item figure {
	background: #FFFFFF;
}
.project-item figure img {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.project-item figure:hover img {
	opacity: .8;
}
.project-titles {
    padding: 12px;
}
.project-titles a {
    border: none;
    color: #555555;
    text-align: center;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    padding-top: 12px;
    padding-bottom: 12px;
}
.project-titles a:hover {
    color: #EA4C89;
}
.project-titles a:active {
    color: #EA4C89;
}
.item4 {
    background: #ECECEC;   
}
.item5 {
    background: #ECECEC;
    padding-top: 72px;
    padding-bottom: 72px;
}
.item6 {
    background: #ECECEC;   
}
    
/* About + Contact */
.item7 {
    background: #F9F9F9;
    margin: 0px;
}
.item9 {
    background: #F9F9F9;
    height: auto;
}
.title-about {
    color: #EA4C89;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 12px;
}
.about {
    background: #F9F9F9;
    padding-top: 72px;
    padding-bottom: 64px;
    padding-left: 16px;
    padding-right: 16px;
}
.about-contact {
    background: #F9F9F9;
    color: #555555;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    width: auto;
    padding-top: 12px;
    padding-left: 16px;
    padding-right: 16px;
}
.photo {
    background: #F9F9F9;
}
.photo img {
    display: block;
    margin: auto;
    width: 50%;
    border-radius: 2px;
}

/* Social */
.social {
    color: #555555;
    display: grid;
    grid-template-columns: 24px 100px;
    grid-template-rows: 24px 24px;
    grid-gap: 8px;
    padding-top: 24px;
    font-size: 0.9em;
    font-family: 'Roboto', sans-serif;
}
.social-1 {
    padding-top: 1px;
    padding-left: 1px;
}
.social-2 {
    color: #555555;
    padding-top: 3px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
}
.social-3 {
    padding-top: 1px;
    padding-left: 1px;
}
.social-4 {
    color: #555555;
    padding-top: 3px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
}
.social a:link {
    color: #555555;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
}
.social a:visited {
    color: #555555;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
}
.social a:hover {
    color: #EA4C89;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
}
.social a:active {
    color: #555555;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
}
    
/* Footer*/
.item10 {
    background: #ECECEC;
}
.item12 {
    background: #ECECEC;
}
.footer {
    background: #ECECEC;
    height: 48px;
    padding: 16px;
    padding-top: 18px;
    color: #A6A6A6;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 11px;
}

@media only screen and (min-width: 600px) {
    /* Sections */
    .wrapper-content {
        display: grid;
        grid-template-columns: 1fr minmax(auto, 900px) 1fr;
    }
    /* Projects */
    .projects {
        display: grid;
        grid-gap: 24px;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    /* About + Contact */
    .about {
        background: #F9F9F9;
        padding-top: 72px;
        padding-bottom: 72px;
        margin-top: 0px;
        display: grid;
        grid-gap: 16px;
        grid-template-columns: 1fr 2fr;
    }
    .about-contact {
        background: #F9F9F9;
        color: #555555;
        padding-top: 0px;
        padding-left: 16px;
        padding-right: 16px;
        text-align: left;
        font-family: 'Roboto', sans-serif;
        font-size: 1.1em;
        width: auto;
    }
    .photo img {
        display: block;
        margin: auto;
        width: 70%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
   /* Sections */
   .wrapper-content {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }
    /* Landing */
    .landing {
        background: #F9F9F9;
        display: grid;
        grid-gap: 16px;
        grid-template-columns: 2fr 1fr;
    }
    .intro {
        background: #F9F9F9;
        color: #555555;
        padding-top: 64px;
        padding-bottom: 72px;
        padding-left: 16px;
        padding-right: 56px;
        text-align: left;
        font-family: 'Roboto', sans-serif;
        font-size: 1.1em;
        width: auto;
    }
    .introhero {
        background: #F9F9F9;
        display: block;
        background-image: url("img/landing/voorbeeld.png");
        background-repeat: no-repeat;
        background-position: center;
    }
    /* Projects */
    .projects {
        display: grid;
        grid-gap: 24px;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        padding-left: 16px;
        padding-right: 16px;
    }
    /* About + Contact */
    .about {
        background: #F9F9F9;
        padding-top: 72px;
        padding-bottom: 72px;
        margin-top: 0px;
        display: grid;
        grid-gap: 16px;
        grid-template-columns: 1fr 2fr;
    }
    .about-contact {
        background: #F9F9F9;
        color: #555555;
        padding-top: 0px;
        padding-left: 16px;
        padding-right: 16px;
        text-align: left;
        font-family: 'Roboto', sans-serif;
        font-size: 1.1em;
        width: auto;
    }
    .photo img {
        display: block;
        margin: auto;
        width: 70%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    /* Navigation */
    .nav-toggle-label {
        display: none;
    }
    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto minmax(1024px, 3fr) 1fr;
    }
    .logo {
        grid-column: 2 / span 1; 
    }
    nav {
        all: unset;
        grid-column: 3 / 4;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    nav ul {
        display: flex;
        justify-content: flex-end;
        /*border: 1px solid green;*/
    }
    nav li {
        margin-left: 3em;
        margin-bottom: 0;
    }
    nav a {
        opacity: 1;
    }
    nav a::before {
        content: '';
        display: block;
        height: 5px;
        background: black;
        position: absolute;
        top: -.75em;
        left: 0;
        right: 0;
        transform: scale(0, 1);
        transition: transform ease-in-out 250ms;
    }
    /* Sections */
    .wrapper-content {
        display: grid;
        grid-template-columns: 1fr minmax(auto, 1200px) 1fr;
    }
    /* Landing */
    .landing {
        background: #F9F9F9;
        display: grid;
        grid-gap: 16px;
        grid-template-columns: 2fr 1fr;
    }
    /* Landing */
    .intro {
        background: #F9F9F9;
        color: #555555;
        padding-top: 64px;
        padding-bottom: 72px;
        padding-left: 16px;
        padding-right: 56px;
        text-align: left;
        font-family: 'Roboto', sans-serif;
        font-size: 1.1em;
        width: auto;
    }
    /* Projects */
    .projects {
        display: grid;
        grid-gap: 24px;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    /* About + Contact */
    .about {
        background: #F9F9F9;
        padding-top: 72px;
        padding-bottom: 72px;
        margin-top: 0px;
        display: grid;
        grid-gap: 16px;
        grid-template-columns: 1fr 2fr;
    }
    .about-contact {
        background: #F9F9F9;
        color: #555555;
        padding-top: 0px;
        padding-left: 16px;
        padding-right: 16px;
        text-align: left;
        font-family: 'Roboto', sans-serif;
        font-size: 1.1em;
        width: auto;
    }
    .photo {
        background: #F9F9F9;
    }
    .photo img {
        display: block;
        margin: auto;
        width: 70%;
    }
}