*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
  font-family: "CenturyGothic", "AppleGothic", "TeX Gyre Adventor", "sans-serif";
  font-size: 16px;
  line-height: 28px;
  color: #222;
  font-weight: 400;
  padding: 1em;
}

/* Type */

h1 {
  line-height: 1.3;
  font-weight: 600;
  font-size: 60px;
  color: #FFF;
}

h2 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 18px;
  margin-top: 36px;
}

blockquote {
  border-left: 5px solid #ddd;
  margin: 40px 1em;
  padding-left: 12px;
  font-style: italic;
  color: #666;
}

/* Layout */

html {
margin:    0 auto;
max-width: 1280px;
}

body {
  max-width: 1280px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.logo {
  display: block;
  min-width: 60%;
  height: 33%;
  min-height: 12em;
  max-height: 50%;
  background-image: url('../images/hus5_bw.jpg');
  background-repeat: no-repeat;
  background-position: top left;
  /*background-blend-mode: color-dodge;
  background-color: grey;*/
  background-size: cover;
}

.logo img {
  margin: 0.5em 2em;
  max-height: 8em;
  max-width: 340px;
}

.bar {
  height: 0.5em;
  min-height: 8px;
  width: 100%;
  background-color: rgb(205, 20, 37);
}

.content {
  max-width: 900px;
  margin-left: 2rem;
  flex-grow: 1;
}

.right .pusher {
  flex-grow: 1;
}

.menu {
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  color: rgb(255, 255, 255);
  background-color: rgb(101, 101, 101)
  /*background-color: rgb(0, 121, 139);*/
}

.menu.active {
  background-color: rgb(0, 121, 139);
  color: white;
}

.menu a {
  padding-left: 2rem;
  padding-right: 2em;
  line-height: 2em;
  font-size: 1.2rem;
}


.footer {
  display: block;
  font-size: 0.85em;
  text-align: right;
}

.nowrap {
  white-space: nowrap;
}

ul {
  margin-left: 2em;
  margin-bottom: 1em;
}

li {
  list-style-type: circle;
}

p {
  margin-block-start: 1em;
  margin-block-end: 1em;
  max-width: 95%;
}

.footer {
  margin-top: 2em;
  margin-left: 2em;
  max-width: 95%;
  text-align: left;
}


a[href^="mailto:"] {
  color: rgb(60, 91, 136);
  text-decoration: none;
}

a[href^="tel:"] {
  color: rgb(60, 91, 136);
  text-decoration: none;
}

@media (max-width: 960px) {

  .logo {
    background-position: center;
  }

  .menu {
    display: block;
  }

  .menu a {
    border-bottom: 1px solid black;
    padding-left: 0.5em;
  }
  .content {
    margin-left: 0.5em;
  }

  .footer {
    margin-left: 0.5em;
  }
}


@media (max-width: 480px) {
  body {
    padding: 0px;
  }

  .logo img {
    margin: 0.5em;
    max-width: 60%;
  }
}