*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: black;
}

html, body{
    overflow-x: hidden;
}

/* landing image */
.top-img{
    height: 100vh;
    width: 100vw;
    background: url(../img/ueberuns/IMG_3111.jpeg);
    min-height: 100vh;
  
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
}

/* content segment */
.content-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: rgb(221, 197, 153);
    position: relative;
}
#container-current{
    background: rgb(221, 197, 153);

}
#container-one{
    background: rgb(221, 197, 153);
}
#container-two{
    background: rgb(221, 197, 153);
}
#container-three{
    background: rgb(221, 197, 153);
}
#container-four{
    background: rgb(221, 197, 153);
}
.content-img{
    width: 50%;
    height: 50vh;
    min-height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 384px;
}
.content-box{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 384px;
}
.content-box p{
    font-size: 2.1vw;
    text-align: center;
    padding: 20px;
    text-align: left;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(0, 0, 0);
}
#container-current .content-box p{
    color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#current-img{
    background-image: url(../img/ueberuns/IMG_3094.jpeg);
}
#one-img{
    background-image: url(../img/ueberuns/1.3.jpeg);
}
#two-img{
    background-image: url(../img/ueberuns/2.2.jpeg);
}
#three-img{
    background-image: url(../img/ueberuns/3.1.jpeg);
}

/* parallax */
.parallax{
    height: 60vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parallax img{
    z-index: -1;
    position: absolute;
    width: 100%;
    top: 0px;
}
.space-between{
    height: 2px;
    width: 100%;
    background: white;
}

@media screen and (max-width:1200px){
    /* parallax */
    .parallax img{
        height: 100vh;
        width: auto;
    }
}


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

    /* content segment */
    .content-box{
        height: 30vh;
        padding: 5px;
    }
    .content-img{
        height: 30vh;
    }
    .content-box p{
        font-size: 15px;
        padding: 10px;
        text-align: center;
    }
    #container-four{
        height: 50vh;
    }

    /* parallax */
    .parallax{
        height: 50vh;
    }
    .parallax img{
        height: 80vh;
        width: auto;
    }
}
