@font-face {
    font-family: Bahn;
    src: url("Mockup/Bahnschrift-Font-Family/BAHNSCHRIFT.TTF");
  }

@font-face {
    font-family: Berlin;
    src: url("Mockup/BRLNSDB.TTF");
  }


h1{
    font-family: Berlin, 'Times New Roman', Times, serif;
    color: whitesmoke;
    font-size: 45pt;
    grid-column: 2 / 4;
    padding-top: 25px;
    padding-left: 10px;
    grid-row: 1 / 2;
    

}

h2{
    font-family:Bahn, 'Times New Roman', Times, serif;
    font-size: 25pt;
    grid-column: 1 / -1;
    grid-row: 4 / 4;
    width: 75vw;
    color: whitesmoke;
    flex-flow: row nowrap;

}

h3{
    font-family:Bahn, 'Times New Roman', Times, serif;
    font-size: 21pt;
    grid-row: 5 / 6;
    grid-column: 1 / -1;
    padding-top: 1vw;
    text-decoration-line: underline;
}

h4{
    font-family:Bahn, 'Times New Roman', Times, serif;
    font-size: 21pt;
    text-decoration-line: underline;
}

nav{
    font-family:Bahn, 'Times New Roman', Times, serif;
    grid-column: 8 / 18;    
    grid-row: 1 / 2;
    padding: 105px 0px 0px 0px;
    font-size: 16pt;
    text-align: center;
    word-spacing: 2.5rem;
    flex-flow: row nowrap;
    
}

nav a{
    text-decoration: none;
    color: whitesmoke;
}

nav a:hover{
    background-color: whitesmoke;
    color: black;
}

.main{
    box-sizing: border-box;
    font-family:Bahn, 'Times New Roman', Times, serif;
    background-color: whitesmoke;
    text-align: center;
    margin: 0;
    height: auto;
    grid-column: 1 / -1;
}

#mainp{
    grid-row: 6 / 7;
    padding: 0vw 30vw 0vw 30vw ;
    text-align: center;
}

#wrapper {
    display: grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(16, minmax(0, 70px)) minmax(0px, 1fr);
}

#scrollingImages{
	background-image: url("Mockup/pexels-binyamin-mellish-1396122.jpg");
    background-position: center;
    background-size: cover;
    height: 1000px;
	grid-row: 1 / 5;
	grid-column: 1 / -1;
}

footer{
    background-color: black;
    grid-column: 1 / -1;
    grid-row: 8 / 9;
    height: 50px;
}

#footer-one{
    font-family:Bahn, 'Times New Roman', Times, serif;
    /* background-color: #58595b; */
    background-color: whitesmoke;
    color: black;
    grid-column: 1 / 7;
    grid-row: 7 / 7;
    text-align: center;
    height: auto;
    padding: 1vw;
}

#footer-two{
    font-family:Bahn, 'Times New Roman', Times, serif;
    /* background-color: #414042; */
    background-color: whitesmoke;
    text-decoration: none;
    color: black;
    grid-column: 7 / 13;
    grid-row: 7 / 7;
    text-align: center;
    height: auto;
    padding: 1vw;
}

#footer-three{
    font-family:Bahn, 'Times New Roman', Times, serif;
    /* background-color: #58595b; */
    background-color: whitesmoke;
    color: black;
    grid-column: 13 / -1;
    grid-row: 7 / 7;
    text-align: center;
    height: auto;
    padding: 1vw;
}

#h2-a{
    grid-column: 4;
}
#h2-b{
    grid-column: 8;
}
#h2-c{
    grid-column: 12;
}

@media only screen and (max-width: 992px){
    
    #wrapper {
        display: grid;
        grid-auto-rows: minmax(0px, auto);
        grid-template-columns: minmax(0px, 1fr) repeat(16, minmax(0, 48px)) minmax(0px, 1fr);
        /* background-color: blue; */
    }

    nav{
        grid-row: 2 / 3;
        grid-column: 2 / 4;
        padding: 0px;
        flex-flow: column nowrap;
        text-align: left;
    }

    h2{
        display: none;
    }
}

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

    #wrapper {
        display: grid;
        grid-template-rows: repeat(20, minmax(0px, auto));
        grid-template-columns: repeat(16, minmax(0, 48px)) ;
        /* background-color: red; */
    }

    #footer-one{
        grid-row: 7 / 8;
        grid-column: 1 /-1;
    }

    #footer-two{
        grid-row: 8 / 9;
        grid-column: 1 /-1;
    }

    #footer-three{
        grid-row: 9 / 10;
        grid-column: 1 /-1;
    }

    footer{
        grid-row: 10 / 10;
    }

    h3, h4{
        font-size: 15pt;

    }

}
