:root {
    --kleur-tekst-licht: #FFF;
    --kleur-blauw: #134a68;
    --kleur-oranje: #ff863c;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
    font-family: 'Geologica', sans-serif;
    font-style: normal;
    text-align: center;
}

body {
    background-color: var(--kleur-blauw);
	height: 100vh;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.mainContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    padding: 40px;
}

h1,
p {
    color: var(--kleur-tekst-licht);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    margin-bottom: 20px;
}

h1 {
	display: inline;
}

.tekstBold {
    font-weight: 700;    
}

a {
    text-decoration: none;
}

.logo {
    max-width: 600px;
}

.mainTextContainer {
    max-width: 800px;    
}

.mainFooterContainer,
.mainTextContainer,
.mainHeaderContainer {
    margin-bottom: 40px;
}

.mainButtonContainer {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contactButton {
    width: 180px;
    height: 50px;
    margin: 0 20px;
    border-radius: 25px;
    color: var(--kleur-tekst-licht);
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    background-color: var(--kleur-oranje);
    display: inline-block;
    position: relative;
    padding: 13px 30px 13px 10px;
    text-align: right;
    transition: .3s;
}

.buttonIllustration {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: .3s;
}

.contactButton:hover {
    background-color: #e96a1d;
    transition: .3s;
}

.wallBackground {
    background-color: #fff;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.wallBackImage {
    background-image: url(back.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
    transition: .3s;
}


/* ------------------------------------------------------------------------------------ */
@media (max-width: 980px) {
/* ------------------------------------------------------------------------------------ */    
    .main {
        padding: 20px;
        height: auto;
        min-height: 75%;
        background-size: cover;
    }

    .mainContainer {
        width: 100%;
        padding: 40px;
    }

    .mainButtonContainer {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .contactButton {
        margin-bottom: 20px;
    }

}

/* ------------------------------------------------------------------------------------ */
@media (max-width: 600px) {
/* ------------------------------------------------------------------------------------ */

	body {
		height: auto;
	}

    .mainContainer {
        width: 100%;
        padding: 0 20px 20px 20px;
    }

    .mainTextContainer {
        margin-bottom: 20px;
    }

	h1,
    p {
        font-size: 14px;
        line-height: 22px;
    }

    .logo {
        max-width: 300px;
    }

    .contactButton {
        width: 180px;
        height: 50px;
        border-radius: 25px;
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .buttonIllustration {
        position: absolute;
        left: 5px;
        top: 5px;
        width: 40px;
        height: 40px;
        border-radius: 20px;
    }

}    