@font-face {
    font-family: Jura;
    src: url(../assets/fonts/jura.woff2);
}

@font-face {
    font-family: Ubuntu;
    src: url(../assets/fonts/Ubuntu-Regular.ttf);
}

html {
    background-color: rgb(0, 0, 0);
}

.header_title {
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
    font-size: 40px;
}

.header_nav {
    text-align: center;
    font-size: 18px;
    color: white;
    margin-bottom: 1em;
    z-index: 1;
}

.nav_link {
    color: white;
    text-decoration: none;
    margin: 15px;
}

.nav_link:hover {
    text-decoration: underline;
    color: orangered;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

section.main {
    display: block;
    /* z-index: 0; */
    font-family: 'Ubuntu', sans-serif;
    color: white;
    margin: auto;
    margin-top: 15em;
    width: 75%;
    background-color: rgba(0, 0, 0, 0.7);
    /* padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px; */
}

#top-image {
    background: url(../images/background.jpg);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: calc(100% + 50px);
}

header {
    top: 0;
    left: 0;
    font-family: Jura, sans-serif;
    min-height: 6.75em;
    background: black;
    width: 100%;
    z-index: 1;
    position: absolute;
}

.Main_headerone {
    font-family: 'Ubuntu', sans-serif;
}


/** Now for the responsive Nav Bar supplied by https://css-tricks.com/convert-menu-to-dropdown/ (I understand the code, and have used it on several other occasions on private projects.). This goes to the file 'dropdown.js' too. **/

nav select {
    display: none;
}

@media (max-width: 960px) {
    nav .pcLinks {
        display: none;
    }
    nav select {
        display: inline-block;
    }
    section.main {
        margin-top: 17.5em;
    }
    select {
        width: 70%;
        text-align-last: center;
    }
    header {
        min-height: 12em;
    }
}

.contactTableMobile {
    display: none;
}