
:root {
  --Grau: #F4F2ED;
  --Orange: #EFAA6A;
  --Rot: #D16552;
  --Dunkelrot: #A9503F;
  --Dunkel-Dunkelrot: #883843;
  --Lilablau: #929AEA;
  --Lila: #646BAD;  
  --Darklila: #282258;
  --Dunkelblau: #353E81;

  --wrapper-width: 1280px;
}
* {
  box-sizing: border-box;
  position: relative;
}  
#vhm *:focus {
  outline: none;
}
.hidden {
  display: none;
}
canvas#scene {
	width: 100vw;
	height: 100vh;
  font-weight: 800;
  position: relative;
  z-index: 3;
}

body {
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  line-height: 1.5;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity .3;
}
body.loaded {
  opacity: 1;
}
h1, h2 {
  font-family: "Montserrat Alternates",  sans-serif;
  color: var(--Dunkelblau);
  line-height: 1.2;
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;  
  z-index: 120;
  padding: 12px;
  background-color: rgba(255,255,255,1);
}
.logo {
  display: flex;
  align-items: center;
  font-family: "Montserrat Alternates",sans-serif;
  line-height: 0;
  font-size: 1.5rem;
  color: var(--Dunkelblau);
}
.logo img {
  max-width: 70px;
  max-height: 70px;
  margin-right: 1vw;
}
.wrapper {
  max-width: var(--wrapper-width);
  margin: auto;
}
@media (min-width:1280px) {
  .wrapper {
    width: var(--wrapper-width);
  }
}
@media (max-width:1279.9px) {
  .wrapper {
    width: 100%;
    padding: 0 30px;
  }
}