@charset "utf-8";
/* CSS Document */

body {
		font-family: Arial, Helvetica, sans-serif;
		font-size: 22px;
		text-align: center;
    line-height: 1.5em;
    margin: 0;
	}

h1, h2, h3 {
    font-size: 22px;
}

p {
    margin-bottom: 35px;
}

#wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
  align-items: center;
  justify-content: center;
}

#content {
	padding: 150px 150px 0 150px;
    position: relative;
    max-height: 100vh;
    /*overflow: auto;*/
    
}

.bgImage {
    background: url("bilder/baum.svg") no-repeat center / contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.2;
    z-index: -1;
}

.inhalt {
    position: relative;
}

a {
    color: #000000;
    
}

.small {
    font-size: 0.75em;
}