@font-face {
    font-family: "Gilda Display" ;
    src: url("fonts/GildaDisplay-Regular.ttf");
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Gilda Display", san serif, serif;
}

html {
    box-sizing: border-box;
}

body {
    width: 100dvw;
    height: 100dvh;
    max-width: 1000px;
    max-height: 2000px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

/*  scroll function*/
#content {
    overflow: auto;
    position: absolute;
    top: 130px;
    bottom: 50px;
    left: 0;
    right: 0;
    margin-bottom: 25px;
}


/* Top navbar (header)*/
ul {
    list-style: none;
}

.topmenu {
    width: 100dvw;
    height: 80px;
    background: #373C2B;

    max-width: 1000px;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.topMenuItem {
    float: left;
    width: 33.333%;
}

/*
Image placering i top navbaren (header).
*/

.topMenuImage {
    /* top, right, bottom, left */
    margin: 10px 10px 10px 10px;

}

#topMenuImageLeft {
    float: left;
    text-align: left;
    margin: 15px 10px 10px 10px;
    height: 50px;
}

#topMenuImageCenter {
    margin: 6px auto auto;
    height: 70px;
    display: flex;
    text-align: center;
    justify-content: center;
}

#topMenuImageRight {
    float: right;
    text-align: right;
    margin:15px 10px 10px 10px;
    height: 50px;
}

/* grey wolf banner, under navbar (header)  */

#greywolfBanner {
    width: 100dvw;
    height: 50px;
    background: #9F9F79;
    text-align: center;

    max-width: 1000px;
    top: 80px;
    left: 0;
    position: absolute;
}

#greywolf {
    font-size: 16pt;
    color: white;
    padding-top: 10px;
    margin: 0;


}

/*
Footer
 */

.footerBar {
    width: 100dvw;
    height: 50px;
    max-width: 1000px;
    background: #9F9F79;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.footerItem {
    float: left;
    width: 33.333%;
    height: 50px;
}


#footerImageleft {
    float: left;
    text-align: left;
}

#footerlinkcenter {
    display: flex;
    justify-content: center;
    padding: 5px;
    margin: 10px auto auto;
    text-decoration: none;
}

#footerImageRight {
    float: right;
    text-align: right;

}

.footerImage1 {
    height: 30px;
    margin: 10px 10px 10px 10px;
}


.footerbutton {

    font-family: san serif, serif;
    font-size: 12pt;
    border: none;
    padding: 0px 5px 0px 5px;
    color: white;
    background-color: #9F9F79;
    box-shadow: 2px 2px 3px #373C2B;

}

.footerImage2 {
    height: 24px;
    /* top, right, bottom, left */
    margin: 13px 5px 13px 0;
    width: 100vw;
    max-width: 100%;
}

