@import url('https://fonts.googleapis.com/css2?family=Borel&family=Dancing+Script:wght@400..700&family=Kaushan+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Borel&family=Dancing+Script:wght@400..700&family=Kaushan+Script&display=swap');

#wrapper{
	width: 98%;
	background-color: #faf7af;
	opacity: 0.98 ; /*Transparenz*/
	margin: auto; /*zentriert die Box*/
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 15px;
	padding-bottom: 10px
}

body {
  background-image: url("./img/hintergrund.png"); 
  background-repeat: repeat; /* no-repeat, repeat-x, repeat-y */
}

h1 {
  color: white;
  text-align: center;
  font-family: Dancing Script;
}

h2 {
	font-size: 50px;
}

h3 {
	font-size: 25px;
}

h4 {
	font-size: 20px;
}

p {
  font-family: Amiri;
  font-size: 20px;
}
  
button {
	background-color: #ACFEB0;
}

img{
	max-width: 100%;
	height: auto;
}

li {
	font-family: Amiri;
	font-size: 20px;
}

* {
	box-sizing: border-box;
}

.header {
  background-color: #faf7af;
  font-family: Dancing Script;
  padding: 15px;
  text-align: center;
  font-size: 100px;
}

.section::after {
  content: "";
  display: table;
  clear: both;
}
.left {
	background-color: #03BE22;
	padding-left: 10px;
	padding-top: 20px;
	padding-bottom: 25px;
	float: left;
	width: 20%; 
}

.main {
	background-color: white;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
	float: left;
	width: 60%; 
}

.right {
	background-color: #E34343;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 150px;
	float: left;
	width: 20%; 
}

.footer {
  background-color: #777;
  padding-top: 15px;
  padding-bottom: 10px;
  text-align: center;
  color: white;
}

@media screen and (max-width: 800px) {
.left, .main, .right {
	width: 100%; 
	}
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}