:root {

    /* Colors: */
    --sand: #F8D293;
    --darkerGray: #222226;
    --gray: #838386;
    --aqua: #488c97;
    --background: #0f0f1a;
}    

* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;

    width: 100vw;

    background-color: var(--background);

    display: flex;
    flex-direction: column;
    
    overflow-x: hidden;

}

.titleScreen {
    height: 100vh;
    width: 100vw;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-image: url(../media/images/media-006-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header {
    z-index: 1;

    display: flex;
    width: 100%;
}

.header > * {
    flex: 1 0 50%;
}

.logo img{
    width: 50%;
    position: sticky;
    margin: 25px;
    top: 0;
}

.links {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: right;
    margin-top: 25px;
}

.links a {
    margin: 0 .5rem;
    padding: 10px;

    text-decoration: none;
    color: var(--aqua);
    font-family: "spartan";
    font-weight: 400;
    font-size: 1.2rem;

    transition: all ease 0.2s;
}
.links a:hover {
    padding-bottom: 5px;
    border-bottom: 2px solid var(--aqua);
}

.contentScreen {
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contentScreen > * {
    flex: 1 1 100%;
}

.title {
    width: 100vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-top: 15vh;


    text-align: center;

}

.title h1{
    font-family: "spectral sc";
    font-size: 7rem;
    font-weight: 400;
    color: var(--aqua);
    margin: 0;
}
.title p {
    text-align: center;
    width: 50vw;

    margin: 0;
    margin-top: -2vh;

    color: white;

    font-family: "spartan";
    font-size: 400;
    line-height: 1.5rem;
}

/*-Content-*/

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cont, .cont-reverse {
    border: 4px solid var(--aqua);
}

.cont {
    width: 80vw;
    background-color: var(--darkerGray);

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 5vh;
    margin-bottom: 5vh;
}
.cont > *, .cont-reverse > * {
    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;
}


.mediaWrapper1, .mediaWrapper2, .mediaWrapper3, .mediaWrapper4, .mediaWrapper5, .mediaWrapper6 {
    flex: 1 1 40%;

    height: 45vh;
    background-image: url("../media/images/media-017.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.mediaWrapper1 {
    background-image: url(../media/images/custom/eigenaren.jpg);
}
.mediaWrapper2 {
    background-image: url(../media/images/custom/lounge.jpg);
}
.mediaWrapper3 {
    background-image: url(../media/images/custom/tafels.jpg);
}
.mediaWrapper4 {
    background-image: url(../media/images/custom/lounge5.jpg);
}
.mediaWrapper5 {
    background-image: url(../media/images/custom/campingWH.jpg);
}
.mediaWrapper6 {
    background-image: url(../media/images/custom/zwierelantijn-1.jpg);
}



.textWrapper {
    flex: 1 1 60%;

    display: flex;
    justify-content: center;
    flex-direction: column;

    text-align: left;
}

.textTitle {
    flex: 1 1 30%;

    display: flex;
    align-items: center;
}
.textPara {
    flex: 1 1 70%;

    display: flex;
    align-items: center;
}


.textTitle h1 {
    margin: 0;
    margin-left: 2vw;

    color: var(--aqua);
    font-family: "Spectral sc";
    font-weight: 400;
    font-size: 3vw;
}
.textPara p {
    margin: 0;
    margin-left: 2vw;

    padding-top: 2vh;
    padding-bottom: 2vh;

    max-height: 100%;
    max-width: 100%;

    color: var(--gray);
    font-family: "spartan";
    font-weight: 200;

    line-height: 1.7rem;

    text-align: left;
    
    font-size: 1.2vw;
}

.cont-reverse {
    width: 80vw;
    background-color: var(--darkerGray);

    display: flex;
    justify-content: center;
    align-items: center;
    
    margin-top: 5vh;
    margin-bottom: 5vh;
}
.cont-reverse > .textWrapper {
    text-align: right;
}
.cont-reverse > .textTitle {
    text-align: right;
    justify-content: flex-start;
}

/* -Footer- */

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10vh;
}

footer > * {
    flex:  1 1 50%;
}

.Fcontent1 {
   display: flex;
   justify-content: flex-start;
   text-align: left;
   margin-left: 25px;
   margin-bottom: 3vh;
}

.Fcontent2 {
   display: flex;
   justify-content: flex-end;
   text-align: right;
   margin-right: 25px;
   margin-bottom: 3vh;
}

.Fcontent1 a, .Fcontent2 a {
    color: var(--gray);
    text-decoration: none;
    font-family: "spartan";
    font-weight: 200;

} 

.Fcontent1 p, .Fcontent2 p {
   color: var(--gray);
   font-family: "spartan";
   font-weight: 200;
}

@media only screen and (max-width: 1200px) {
    .links a {
        font-size: 1.3vw;
    }
  }

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

    #menu {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        color: var(--aqua);

    }
    #atag {
        margin-left: 9vw;
        margin-top: 2vh;
        text-decoration: none;
        font-size: 4vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .titleScreen {
        background-size: 335%;
        background-position: top;
    }

    .links {
        display: none;
    }

    .logo img {
        width: 50%;
    }

    .title h1 {
        font-size: 4.5rem;
    }
    .title p {
        width: 90vw;
    }

    .cont, .cont-reverse {
        width: 90vw;
        height: 30vh;
        margin-top: 2vh;
        margin-bottom: 2vh;

        flex-direction: column;

        border-width: 2px;
    }
    .mediaWrapper1, .mediaWrapper2, .mediaWrapper3, .mediaWrapper4, .mediaWrapper5, .mediaWrapper6 {
        height: 100vh;
    }

    .textTitle h1 {
        margin: 0;
        margin-left: 2vw;
        padding-top: 2vh;
        font-size: 4vw;
    }

    .textPara p {
        font-size: 2vw;

        line-height: .8rem;

        padding: 0;
        padding-bottom: 2vh;
    }


    .Fcontent1 a, .Fcontent2 a, .Fcontent1 p, .Fcontent2 p {
        font-size: .7rem;
    }
}

::-webkit-scrollbar {
    display: none;
}