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

body{
    background-color: black;
    min-height: 100vh;
}

html, body{
    overflow-x: hidden;
}

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

    position: relative;
}
.top-img h1{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-family: 'Brush Script MT', cursive;
    color: white;
    font-size: 100px;
    text-shadow: 2px 2px #000000;
}

/* content segment */
.content-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    position: relative;
    max-height: 700px;
    z-index: 1;
}
.content-img{
    width: 50%;
    height: 80vh;
    max-height: 700px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 384px;
}
.content-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.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: 400px;
}
#ueberUns-content-box{
    background-image: url(../img/ueberUns.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
}
.content-box h2{
    width: 50%;
    padding: 20px;
    border-top: solid 2px;
    border-color: gray;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 3vw;
    text-align: center;
}
.content-box p{
    font-size: 2.1vw;
    text-align: center;
    padding: 20px;
    
}

/* parallax */
.parallax-info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}
.parallax-info h2{
    color: white;
    font-size: 8vw;
    font-weight: bold;
    text-align: center;
    width: 100%;
}
#opening{
    font-family: 'Brush Script MT', cursive;
    /* font-family: Arial, Helvetica, sans-serif;
    font-size: 7vw; */
    color: #ffffff;
    text-shadow: 5px 2px 5px #000000;
}
#opening1, #opening2{
    font-family: 'Brush Script MT', cursive;
    /* font-family: Arial, Helvetica, sans-serif;
    font-size: 7vw; */
    color: #ffffff;
    text-shadow: 5px 2px 5px #000000;
    text-align: center;
    font-size: 4.5vw;
}
#openingSpacer{
    height: 30px;
}
#openingParallax{
    background: #00000042;
}

/* buttons */
.more-information-button , .big-button{
    width: 30%;
    margin-top: 10px;
    font-size: 3vw;
    padding: 5px;
    background: transparent;
    border: solid 0.3vw;
    color: white;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
}
.more-information-button{
    color: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.3);
    width: 50%;
    margin-top: 30px;
    font-size: 2vw;
    border: solid 0.1vw;
    transition: ease-in-out 0.5s;
}
.more-information-button:hover{
    color: black;
    border-color: black;
}
.big-button{
    color: white;
    border-color: white;
    width: 35%;
    margin-top: 30px;
    font-size: 2vw;
    font-weight: bolder;
    border: solid 0.2vw;
    transition: ease-in-out 0.5s;
}
.big-button:hover{
    border: solid 0.3vw;
}

/* vegan */
#vegan-info-text-container{
    position: relative;
    padding: 0px;
}
#vegan-info-text{
    width: 100%;
    background:white;
    border-radius: 6px;
}
#vegan-info-text ul{
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    padding: 20px;
    padding-left: 50px;
    font-size: 23px;
}
#vegan-arrow{
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

/* picture grid */
.picture-grid{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-grow: 3;
    flex-shrink: 1;
}
.picture{
    width: 33.333vw;
    height: 33.333vw;
    border: solid  white;
    border-top: solid 5px white;
    border-bottom: solid 5px white;
    flex-grow: 3;
    flex-shrink: 1;
    z-index: 1;
}
.picture-1{
    background: url(../img/pic1.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-left: solid 5px white;
}
.picture-2{
    background: url(../img/pic2.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.picture-3{
    background: url(../img/pic3.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-right: solid 5px white;
}


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

    .top-img h1{
        top: 60%;
        font-size: 70px;
    }

    #opening{
        font-size: 70px;
    }
    #opening1, #opening2{
        font-size: 40px;
    }

    /* content segment */
    .content-box{
        height: 30vh;
        padding: 5px;
    }
    .content-img{
        height: 45vh;
        max-height: 400px;
    }
    #ueberUns-content-box{
        height: 45vh;
    }
    .content-box h2{
        font-size: 5vw;
    }
    .content-box p{
        font-size: 3vw;
        padding: 5px;
    }

    /* vegan */
    #vegan-info-text ul{
        font-size: 15px;
    }

    /* buttons */
    .more-information-button{
        margin-top: 5px;
        width: 30%;
        font-size: 3vw;
        border: solid 1.5px;
    }
    .big-button{
        width: 30%;
        font-size: 3vw;
        border: solid 1.5px;
        margin-top: 10px;
    }

    /* picture grid */
    .picture{
        border: solid 1px white;
        border-top: solid 2px white;
        border-bottom: solid 2px white;
    }
    .picture-1{
        border-left: solid 2px white;
    }
    .picture-3{
        border-right: solid 2px white;
    } 
}

@media screen and (max-width:600px){
    #opening{
        font-size: 45px;
    }
    #opening1, #opening2{
        font-size: 30px;
    }
}

@media screen and (max-width:900px) and (orientation:landscape) { 
    .top-img h1{
        top: 70%;
        width: 90vw;
        text-align: center;
        font-size: 70px;
    }

    .content-box{
        height: 70vh;
    }

    .content-img{
        height: 80vh;
    }
}