

body   { 
	background-color: white ; 
/*	background-image: url("background.jpg");*/
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}



#bild a {
  display: block;
  background-image: url(titelbild.jpg);
  width:100%;
  height: 100%;
  background-repeat: no-repeat;
  background-color: #fff;
  background-position: center;
  color: #000;
}

#sc-video {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr auto 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  justify-items: center;
  align-items: center;
  grid-template-areas:
    ". area1 ."
    ". inhalt ."
    ". . .";
  height: 100%;
}

.inhalt { grid-area: inhalt; }

.area1 { grid-area: area1; }



h1 {
    font-family: 'Cuprum', sans-serif; 
    display: flex;
    text-align: center;
    font-size: 3.5em;
    font-weight: bold;
    flex-direction: column;
    color: #395b9c;
}

h2 {
    font-family: 'Cuprum', sans-serif; 
    display: flex;
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    flex-direction: column;
    color: black;

}

h3 {
    font-family: 'Cuprum', sans-serif; 
    display: flex;
    font-size: 1.5em;
    text-align: center;
    font-weight: bold;
    flex-direction: column;
    color: black;

}


