/**
 * general definitions
 */
body {
  width: 100%;
	height: 100%;
  margin: 0;
	padding: 0;
  font-family: Comic Sans MS, Verdana, Helvetica;
	color: #664458;
	overflow: hidden;
}

#content {
	background: transparent;
	z-index: 100;
	position: fixed;
}

#address {
	background: transparent;
	z-index: 100;
	position: absolute;
	right: 10px;	
}

#image {
	position: absolute;
	bottom: 10px;
	z-index: 100;	
	width: 40%;
}

#image img {
	box-shadow: 5px 5px 5px #176fc1;
	width: 100%;
	max-width: 600px;
}

h1 {
	color: #176fc1;
	font-weight: bolder;
	font-size: 30px;
	font-family: Comic Sans MS, Verdana, Helvetica;
	text-shadow: 2px 2px 0 #83a7dd;
	-moz-transform: rotate(-15deg);
	-ms-transform: rotate(-15deg);
  -o-transform: rotate(-15deg);
  -webkit-transform: rotate(-15deg);
}

#events {
	position: absolute;
	right: -60px;
	top: 125px;
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
	font-size: 0.75em;
}

#upper {
	position: fixed;
	top: -185px;
	left: -185px;
	border-radius: 200px;
	height: 400px;
	background: #e3d9df;
	width: 400px;
	z-index: 1;
}

#under {
	position: fixed;
	bottom: -185px;
	right: -185px;
	border-radius: 200px;
	height: 400px;
	background: #e3d9df;
	width: 400px;
	margin: -5px -5px;
	z-index: 1;	
}

#disclaimer {
	background: transparent;
	z-index: 100;
	position: absolute;
	left: 20%;
	top: 200px;	
  padding-right: 20px;
}

span {
  font-size: 0.9em;
}

a {
  color: #664458;
}

#services {
  position: absolute;  
  z-index: 100;
}

/**
 * Mobile landscape version
 */
@media (min-width: 0em) {
  
  body {
    background: #83a7dd url("../images/fuss.svg") no-repeat 90% 25px fixed;
    background-size: 50px 100px;    
  }
  
  #address {
    font-size: 0.8em;
    bottom: 5px;
  }
  
  #services {
    font-size: 0.8em;
    top: 5%;
    left: 30%;
    padding-right: 30px;
    max-width: 80%;
  }
  
  #services ul {
    margin-left: -10px;
  }
  
  #image {
    left: 5px;
    max-width: 200px;
  }
  
  #image img {
    border-radius: 15px;
  }
  
  h1 {
    font-size: 20px;
  }
  
  #content {
    left: 5px;
    top: -5px;
  }
  
  #events {
    top: 60px;
    font-size: 0.6em;
    right: -50px;
  }
  
  #disclaimer {
    font-size: 0.8em;
  }
  
  #upper {    
    top: -110px;
    left: -110px;
    border-radius: 125px;
    height: 250px;
    width: 250px;
  }

  #under {
    bottom: -110px;
    right: -110px;
    border-radius: 125px;
    height: 250px;
    width: 250px;
    margin: -5px -5px;
  }
}

/*
 * mobile portrait version
 */
@media (min-width: 0em) and (min-height: 30em) {
  
#services {
    font-size: 1em;
    top: 25%;
    left: 5%;
    padding-right: 30px;
    max-width: 80%;
  }
} 

#address {
    font-size: 0.9em;
}

/**
 * tablet landscape version
 */
@media (min-width: 50em) {
  body {
    background: #83a7dd url("../images/fuss.svg") 90% 25px no-repeat fixed;	
    background-size: 100px 200px;
  }

  #content {	
    left: 25px;
  }

  #address {	
    bottom: 10px;
    font-size: 1.5em;
  }

  #services {    
    top: 5%;
    left: 20%;
    font-size: 1.5em;
  }

  #events {
    right: -60px;
    top: 125px;	
    font-size: 0.75em;
  }

  #image {
    left: 50px;	
    max-width: 800px;
  }

  #image img {
    border-radius: 50px;	
  }

  h1 {	
    font-size: 2em;	
  }
  
  #upper {
    top: -180px;
    left: -180px;
    border-radius: 200px;
    height: 400px;
    width: 400px;
  }

  #under {
    bottom: -180px;
    right: -180px;
    border-radius: 200px;
    height: 400px;
    width: 400px;
    margin: -5px -5px;
  }

  #disclaimer {
    font-size: 1.5em;
  }
}
/**
 * tablet portrait version
 */
@media (min-width: 50em) and (min-height: 50em) {
  #services {    
    top: 20%;
    left: 20%;
    font-size: 1.7em;
  }
  
  #address {	
    font-size: 1.7em;
  }
}

/**
 * desktop version
 */
@media (min-width: 90em) {
  body {
    background: #83a7dd url("../images/fuss.svg") no-repeat 90% 25px fixed;	
    background-size: 100px 200px;
  }

  #content {	
    left: 25px;
  }

  #address {	
    bottom: 10px;
    font-size: 1.8em;
  }

  #services {    
    top: 15%;
    left: 30%;
    font-size: 1.8em;
  }

  #events {
    right: -60px;
    top: 125px;	
    font-size: 0.75em;
  }

  #image {
    left: 50px;	
    max-width: 800px;
  }

  #image img {
    border-radius: 50px;	
  }

  h1 {	
    font-size: 4em;	
  }

  #disclaimer {
    font-size: 1.8em;
  }
  
  #upper {
    top: -380px;
    left: -380px;
    border-radius: 400px;
    height: 800px;
    width: 800px;
  }

  #under {
    bottom: -380px;
    right: -380px;
    border-radius: 400px;
    height: 800px;
    width: 800px;
    margin: -5px -5px;
  }  
}