/*--------------------------------- Basis ------------------------*/

/*- grundlegende Einstellungen 
- grundlegende Textgestaltung 
- Elementselektoren */

/*--------------------------------- Basis ------------------------*/
@font-face {
	font-family: "Montserrat";
    	src: url("../fonts/Montserrat/Montserrat-medium.woff") format("woff");
}

h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote {
	margin-top: 0;
	margin-bottom: 1em;
}
* { 
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}
h1 {
	font-size: 4rem;
}

h1, h2, h3 {
	font-family: "Montserrat",Arial,Helvetica,sans-serif;
}
p, li, label  { 
    font-family: "Montserrat",Arial,Helvetica,sans-serif;
	font-size: 1.1rem;
	line-height: 1.7em;
	hyphens: auto;
}
html {
    scroll-behavior: smooth;   
}
body {
    background-color: transparent;
}
img {
	max-width: 100%;
	height: auto;
}

/* Center the loader */
#loader {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #f90;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

/* ================================

- Handyscreen css 
- Breakpoint 480px

================================ */ 
@media screen and (max-width: 480px) {
	h1 {
		font-size: 2.2rem;
	}
	p {
		line-height: 1.4em;
	}
}