/*@import url("uikit-base.css");
@import url("mmenu.css");
@import url("font-awesome.min.css");*/

/* short-stack-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Short Stack';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/short-stack-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v40-latin_latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-600 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v40-latin_latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v40-latin_latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



:root {
  --blau: #005CA9;
  --gelb: #FFDD00;
}
* {
  margin: 0;
  padding: 0;
  outline: none !important;
  /*-webkit-appearance: none;
-moz-appearance: none;*/
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 20px;
}
body {
  height: 100%;
  font-family: 'Open Sans', Helvetica, Arial, SansSerif, "sans-serif";
    line-height: 1.6;
    background-color: var(--blau);
    color: #ffffff;
  
}
::-moz-selection {
  background: var(--gelb);
  color: var(--blau);
}
::selection {
  background: var(--gelb);
  color:var(--blau);
}
a {
  text-decoration: none;
  color: inherit;
}
a img {
  border: none;
}
img {
  max-width: 100%;
  height: auto;
}
table {
  /*width: 100%;
table-layout:fixed;*/
}
figure.image {
  display: inline-block;
  border: 1px solid gray;
  margin: 0 2px 0 1px;
  background: #f5f2f0;
}
figure.align-left {
  float: left;
}
figure.align-right {
  float: right;
}
figure.image img {
  margin: 8px 8px 0 8px;
}
figure.image figcaption {
  margin: 6px 8px 6px 8px;
  text-align: center;
}
.noIcon span.uk-icon {
  display: none;
}


/*=================================
            Formatierung
=================================*/

h1, h2, h3, h4 {
	 font-family: 'Short Stack', Helvetica, Arial, SansSerif, "sans-serif";
    font-size: 36px;
    font-weight: normal;
    color: var(--gelb);
}

h1 {
	font-size: 36px;
}

h2 {
	font-size: 22px;
}

h3 {
	font-size: 18px;
}

h4 {
	
}

h5 {
	
}

p {
	margin-bottom: 1em;
}



/*=================================
            KLASSEN
=================================*/

.mid {
	width: 92%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.uk-modal-dialog {
	background-color: var(--blau);
}