body {
    /* background-color: #fffbed; */
    background-image: linear-gradient(180deg, #fffbed, pink, #fffbed);
}

.title {
    font-size: 4em;
    text-align: center;
    padding: 100px 0px 0px 0px;
    font-family: 'Playfair Display', serif;
    color: #4084e2;
}



.container {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-top: 50px;
}

.ik {
    width: 450px;
    height: auto;
    border-radius: 50%;
    border: 5px solid #fcc5a7;
    margin: 30px;
}


h1 {
    font-family: 'Playfair Display', serif;
    color: #4084e2;
    font-size: 3em;
}

h2 {
    margin-top: 200px;
    padding-bottom: 10px;
    font-family: 'Marck Script', cursive;
    color: #003e96;
    font-size: 1.8em;
    -ms-transform: rotate(-15deg);
    /* IE 9 */
    transform: rotate(-15deg);
}


/* geanimeerde tekst boven */


.text {
    font-family: 'Marck Script', cursive;

}

.text span {
    /* padding: 0 0.3rem; */
    font-size: 1.6em;
    animation: zoomup 4s ease infinite;
    display: inline-block;
    animation-delay: calc(200ms * var(--i));
    color: #003e96;
}

.intro {
    width: 60%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: #003e96;
    line-height: 2.5rem;
    margin-top: 40px;
    font-size: 1.2rem;
    font-weight: bolder;
}

.webmagazine img {
    width: 70%;
    height: auto;
    margin-bottom: 200px;
    border: solid 20px white;
}

.webmagazine-text {
    width: 80%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: #003e96;
    line-height: 2rem;
    margin-top: 130px;
    padding-bottom: 40px;
    font-size: 1.1rem;
}

.paintbrush {
    width: 15%;
    margin-top: 50px;
    /* height: auto; */
}

h3 {
    font-family: 'Playfair Display', serif;
    color: #4084e2;
    font-size: 2em;
    padding: 20px;
}

.appdesign-text {
    width: 80%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: #003e96;
    line-height: 2rem;
    padding-bottom: 40px;
    font-size: 1.1rem;
}

.app {
    width: 50%;
    border: solid 20px white;
}

.crystals-text {
    width: 80%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: #003e96;
    line-height: 2rem;
    padding-bottom: 40px;
    font-size: 1.1rem;
    margin-top: 100px;
}

.crystalsimg {
    width: 80%;
    border: solid 20px white;
}

.huisvandetoekomst-text {
    width: 80%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: #003e96;
    line-height: 2rem;
    padding-bottom: 40px;
    font-size: 1.1rem;
    margin-top: 100px;
}

.huis {
    width: 80%;
    border: solid 20px white;
}

.logodesign-text {
    width: 80%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: #003e96;
    line-height: 2rem;
    padding-bottom: 40px;
    font-size: 1.1rem;
    margin-top: 100px;
}

.logo {
    width: 100%;
}

.ervaring-text {
    margin-top: 200px;
}

.ai {
    width: 10%;
    padding: 20px;
}


footer {
    width: 100%;
    background-color: #a0b9db;
    height: 200px;
    margin-top: 100px;
    text-align: center;
    color: #003e96;
    font-family: 'Montserrat', sans-serif;
    line-height: 2rem;
}

h4{
    font-size: 1.2rem;
    padding-top: 20px;
    font-weight: bold;
}



@keyframes zoomup {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2) translateY(-20px);
    }
}


/* scroll down pijl */

.down-arrow {
    position: absolute;
    top: calc(100vh - 80px);
    left: calc(80% - 14px);
    width: 0;
    height: 30px;
    border: 2.4px solid #003e96;
    border-radius: 2px;
    animation: jumpInfinite 1.5s infinite;
}

.down-arrow:after {
    content: " ";
    position: absolute;
    top: 12px;
    left: -10px;
    width: 16px;
    height: 16px;
    border-bottom: 4px solid #003e96;
    border-right: 4px solid #003e96;
    border-radius: 4px;
    transform: rotateZ(45deg);
}

@keyframes jumpInfinite {
    0% {
        margin-top: 0;
    }

    50% {
        margin-top: 20px;
    }

    100% {
        margin-top: 0;
    }
}