*{
    margin:0;
    padding:0;
    top:0;
    left:0;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-align: center;
    color: #000000;
    line-height: 25px;
}

h1 {
    font-size: 4rem;
    color: #FFFFFF;
    display: table;
    margin:auto;
}

p {
    margin: 75px 0;
}

p:last-of-type{
    margin-top:0;
}

a{
    color: #000000;
    transition: all 0.2s;
}

a:hover{
    color: #00a9ff;
}

img{
    width: 25%;
}

.container {
    perspective: 1px;
    transform-style: preserve-3d;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
}

.home-bg {
    height: 100vh;
    width: 102.5vw;
    transform: translateZ(-1px) scale(2);
    background: url("luchtfoto.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.top{
    height: calc(30% - 30px);
}

.home-content{
    width: 50%;
    display: table;
    margin:auto;
    position: relative;
}

.content-wrapper {
    position: relative;
    background-color: #FFFFFF;
}

.content {
    max-width: 60vw;
    margin: 0 auto;
    padding: 25px 0;
}

.chevron {
    display: table;
    margin: auto;
    margin-top: 25%;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 5s ease-out infinite;
}

.chevron:first-child {
    animation: move 2.5s ease-out 1s infinite;
}

.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}

.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;

    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}

@media only screen and (max-width: 900px) {

    .content{
        max-width: 95vw;
    }

}

@media only screen and (max-width: 600px) {

    body{
        font-size: 0.75rem;
    }

    h1{
        font-size: 2.5rem;
    }

    img{
        width: 40%;
    }

    .chevron {
        margin-top: 35%;
    }

}

@media only screen and (max-width: 450px) {

    h1{
        font-size: 1.75rem;
    }

    img{
        width: 50%;
    }

    .chevron {
        margin-top: 50%;
    }
}