@import url('https://fonts.googleapis.com/css?family=Montserrat:700|Inter|Merriweather+Sans|Raleway&display=swap');

body, html {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-flow: column nowrap;
  min-height: 100vh;
}

a {
  color: #000000;
  text-decoration: underline;
}

a:visited {
  color: #000000;
  text-decoration: underline;
}

dialog#cookie_notification {
  display: none;
  order: 10;
  position: relative;
  padding: 5px 10px 15px 10px;
  margin: 0;
  z-index: 20;
  border: solid 1px #000;
  background: rgba(255,255,255,1);
}

dialog#cookie_notification h1 {
  font-family: 'Raleway';
  font-weight: bold;
  font-size: 20px;
  height: 20px;
}

dialog#cookie_notification span#cookie_acceptance_links {
  float: right;
}

dialog#cookie_notification span#cookie_acceptance_links > a {
  text-decoration: underline;
  color: #000000;
  padding: 10px 10px;
}

dialog#cookie_notification span#cookie_acceptance_links > a.cookie_accept {
  padding: 10px 10px;
  background: rgb(0,0,0);
  color: #ffffff;
}

dialog#cookie_notification h1 > img {
  height: 24px;
  margin-right: 20px;
}

h1 {
  font-family: 'Montserrat';
  font-weight: bold;
}

h2 {
    font-family: 'Raleway';
    font-weight: bold;
}

nav {
  position: fixed;
  right: 30px;
  order: 30;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  padding: 20px;
  font-family: 'Raleway';
  font-size: 15px;
  z-index: 30;
}

nav > a {
  text-decoration: none;
  padding: 0 20px;
}

main {
  flex: 3 0 auto;
  order: 20;
}

footer {
  flex: 0 0 auto;
  display: flex;
  order: 50;
  flex-flow: row nowrap;
  background-color: #555555;
  padding: 20px;
}

footer > span, footer > a, footer > a:visited {
  color: #ffffff;
  padding: 0 10px;
  font-family: 'Raleway';
  font-size: 12px;
}

footer > a {
  text-decoration: underline;
}

a.scrollsecdown {
  position: fixed;
  z-index: 5;
  width: 25px;
  height: 25px;
  display: inline-block;
  left: 50%;
  bottom: 100px;
  margin-right: auto;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  transform: rotate(45deg) translateX(-50%);
  cursor: pointer;
  display: none;
}

a.scrollsecup {
  position: fixed;
  z-index: 5;
  width: 25px;
  height: 25px;
  display: inline-block;
  left: 50%;
  top: 100px;
  margin-right: auto;
  border-left: 1px solid black;
  border-top: 1px solid black;
  transform: rotate(45deg) translateX(-50%);
  cursor: pointer;
  display: none;
}