body {
	margin: 0px;
	background-color: white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #333333;
	line-height: 1.3;
}

* {
  box-sizing: border-box;
}

@font-face {
    font-family: 'Calligraffitti-Regular';
    src: url('../fonts/Calligraffitti-Regular.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Carattere-Regular';
    src: url('../fonts/Carattere-Regular.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Caveat-VariableFont_wght';
    src: url('../fonts/Caveat-VariableFont_wght.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MarckScript-Regular';
    src: url('../fonts/MarckScript-Regular.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'OoohBaby-Regular';
    src: url('../fonts/OoohBaby-Regular.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

.Calligraffitti-Regular {
    font-family: 'Calligraffitti-Regular', sans-serif;
    font-size: 50px;
}

.Carattere-Regular {
    font-family: 'Carattere-Regular', sans-serif;
    font-size: 50px;
}

.Caveat-VariableFont_wght {
    font-family: 'Caveat-VariableFont_wght', sans-serif;
    font-size: 50px;
}

.MarckScript-Regular {
    font-family: 'MarckScript-Regular', sans-serif;
    font-size: clamp(20px, 10vw, 50px); /* clamp(min-Size/default/max-size) */
}

.OoohBaby-Regular {
    font-family: 'OoohBaby-Regular', sans-serif;
    font-size: 50px;
}

/* Animationen */
@keyframes einblendung {
  from {opacity: 0.0;}
  to {opacity: 1.0;}
}

@keyframes bewegung_oben_unten {
	/* transform wird auf die div-Box angewendet und bezieht sich auf die Breite der Box */
	/* d.h. die Box wird nicht vom Bildschirm her gesehen 90% verschoben, sondern lediglich */
	/* von ihrer Breite her gesehen */
	from { transform: translateY(-40%); }
	to { transform: translateY(0); }
}

@keyframes bewegung_rechts_links {
	from { transform: translateX(190%); }
	to { transform: translateX(0); }
}

.ani_opac { animation-name: einblendung;
	animation-duration: 2s;
	animation-fill-mode: forwards;	
}

.ani_up_down { animation-name: bewegung_oben_unten;
	animation-duration: 1s;
	animation-fill-mode: forwards;	
}

.ani_right_left { animation-name: bewegung_rechts_links;
	animation-duration: 2s;
	animation-fill-mode: forwards;	
}

/* The grid container */
.grid-container {
  display: grid;
  grid-template-areas: 
    'header' 
    'main_area' 
    'footer';
  /* grid-column-gap: 10px; - if you want gap between the columns */
  grid-template-columns: 1fr; /* IMPORTANT: Define column widths, otherwise a lot of text stretches them in x */
  grid-template-rows: auto 1fr auto; /* Header takes auto height, middle takes remaining space (1fr), footer takes auto height */

  /* Möchte man das der Footer stehen bleibt, muß man height: 100vh angeben. */
  /* Soll der Footer sich nach unten verschieben bei längerem Text, gibt man min-height: 100vh an. */
  height: 100vh; /* Full height of the viewport */
} 

/* Macht das der Footer bei der mobilen Ansicht immer am Ende der Page ist */
@media (max-width: 950px) {
  .grid-container {
    height: auto;        /* Höhe richtet sich nach Inhalt */
    min-height: 100vh;   /* Mindestens so hoch wie der Viewport */
  }
}


.header { grid-area: header;
	margin-bottom: 4px;
}


.main_area { grid-area: main_area;
	overflow: auto;
	padding-left: 5px;
	padding-right: 5px;
}


.footer { grid-area: footer;
}

/* durch diesen Eintrag können alle Bilder bei kleineren Bildschirmen verkleinert werden */
img {
  max-width: 100%;  /* Ohne diese Angabe behält das Bild seine Größe bei. Mit dieser Angabe kann es schrumpfen. */
  height: auto;     /* Verhältnis beibehalten */
}


.header_centering { display:flex;
	justify-content: center;
}

.header_flex_2_col { display:flex;
	width: 80%;
	margin-top: 4px;
	border-bottom: 2px solid #AAAAAA;
}

/* Responsive layout - setzt Verenas Bild und den Titel untereinander */
@media (max-width: 950px) {
  .header_flex_2_col  {
	flex-direction: column;
  }
}

.header_flex_2_row { display:flex;
	flex-direction: column;
	flex: 1;
}

.verenas_pic { display:flex; 
	padding-top: 5px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	justify-content: center;
	align-items:center;
}

.titel_pic { width: 100%;
	text-align:center;
}

.menu_leiste { display:flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height: 100%;
}

/* Responsive layout - setzt die Menübuttons untereinander */
@media (max-width: 950px) {
  .menu_leiste  {
	flex-direction: column;
  }
}

.menu_button { display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	cursor: pointer;
}

.menu_link { color: #888888; text-decoration: none; }
.menu_link:hover { color: #333333; }


.main_area_centering { display:flex;
	justify-content: center;
}

.flex_row { display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.div_center { text-align:center; }


.footer_centering { display:flex;
	justify-content: center;
	align-items: center;
}

.footer_3_col { display:flex;
	justify-content: space-around;
	align-items: stretch;
	width: 80%;
	border-top: 2px solid #AAAAAA;
	margin-top: 2px;
}

/* Responsive layout - footer-Elemente untereinander */
@media (max-width: 950px) {
  .footer_3_col  {
	flex-direction: column;
	align-items: stretch;
  }
}

.footer_row { display:flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	flex: 1;
}

.footer_items { display:flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 17px;
	color: #666666;
	font-weight:bold;
	text-align: center;
	/* Hinweis: justify-content und align-items wirken sich nur auf die flex-items aus, NICHT auf deren Inhalt (z.B. Text). Möchte man den Text darin auch zentrieren muß man wie bei normalen div-Blöcken text-align:center bemühen. */
}

.e_mail { font-size:14px;
	font-weight:bold;
	color: #666666;
	text-align: center;
}


.footer_links {  color: #666666; 
	font-size: 17px;
	font-weight: bold;
}

.footer_padding { padding-top: 10px;
	padding-bottom: 16px;
}

.centering_items { display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


.impressum_layout { display:flex;
}

.impressum_text { display:flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding-left: 10px;
	padding-right: 10px;
}

/* Responsive layout - Im PC: Überschrift und Text nebeneinander */
@media (max-width: 950px) {
  .impressum_layout  {
	flex-direction: column;
  }
}


.PageHeader { font-size: 30px; }

.ft_18 { font-size: 18px; }
.ft_20 { font-size: 20px; }
.ft_22 { font-size: 22px; }
.ft_24 { font-size: 24px; }
.ft_26 { font-size: 26px; }
.ft_36 { font-size: 36px; }


.soft_gray { color: #AAAAAA; }
.gray_6 { color: #666666; }
.gray_8 { color: #888888; }
.col_white { color: white; }
.col_black { color: black; }
.light_hv { color: #D5F7FF; }

.make_up { /*color: #EDEDED;*/
	color: #D5F7FF;
	text-shadow: 1px 1px 3px #000000;
}

.light_gray_shadow { text-shadow: 1px 1px 2px #CCCCCC; }
.black_bg_shadow { text-shadow: 1px 1px 4px black; }

.pad_l_20 { padding-left: 20px; }
.pad_l_30 { padding-left: 30px; }
.pad_l_40 { padding-left: 40px; }
.pad_l_50 { padding-left: 50px; }
.pad_l_60 { padding-left: 60px; }
.pad_l_80 { padding-left: 80px; }
.pad_l_120 { padding-left: 120px; }
.pad_l_160 { padding-left: 160px; }
.pad_l_200 { padding-left: 200px; }
.pad_l_240 { padding-left: 240px; }
.pad_l_320 { padding-left: 320px; }

.gs_pad_r { padding-right: 30px; }

.box_shadow { border: 1px solid gray; 
	box-shadow: 2px 2px 2px black;
}

.bd_bt { border-bottom: 1px solid #666666; }



.mb_t { border-top: 1px solid black; padding-left: 10px; padding-right: 10px; }
.mb_b { border-bottom: 1px solid black; padding-left: 10px; padding-right: 10px; }
.mb_l { border-left: 1px solid black; padding-left: 10px; padding-right: 10px; }
.mb_r { border-right: 1px solid black; padding-left: 10px; padding-right: 10px; }






