/*
COLORS:

Light green: #7ed56f
Medium green: #55c57a
Dark green: #28b485

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* borders and paddings are not longer added   */
}

body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #777;
    padding: 30px;

}

.header {
   height: 95vh; /* 95% of the view high*/
   background-image: linear-gradient(
       to right bottom,
       rgba(126, 213, 111, 0.8),
       rgba(40, 180, 131, 0.8)),
   url(../img/siteconstructie.jpg);
   background-size: cover;
   background-position: top;
   position: relative;

   clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.logo-box {
    position: absolute;
    top: 40px;
    left: 40px;
}

.logo {
    height: 35px;
}

.text-box {
    position:absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); /*the align is done with the element itself*/
}

.heading-primary{
    color: #fff;
    text-transform:uppercase;

    backface-visibility: hidden;
}

.heading-primary-main {
    display: block;
    font-size: 60px;
    font-weight: 400;
    letter-spacing: 35px;

    animation-name: moveInLeft;
    animation-duration: 3s;
    /*animation-delay: 2s;*/
}

.heading-primary-sub {
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 18px;
    animation: moveInRight 3s ease-out;
}

@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    80% {
        transform: translateX(20px);
    }
    
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    80% {
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}