body {
	margin: 0;
	margin-top: -60px; /* Minus 60 Pixel wegen des Headers*/
	padding: 0;
	min-height: 100vh;
	background: url('images/bg.png') no-repeat center center fixed;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	font-family: 'Raleway', Helvetica, Arial, sans-serif;
}  

/* Fonts */
@font-face {
	font-family:'Waldorf';
	font-style: normal;
	font-weight: 400;
	src: local('Waldorf'),
	url(/fonts/Waldorf-Regular.otf) format('otf'),
	url(/fonts/Waldorf-Regular.otf) format('woff2'),
	url(/fonts/Waldorf-Regular.otf) format('woff')
}

 @font-face {
	font-family:'Raleway';
	font-style: light;
	font-weight: 100;
	src: local('Raleway'),
	url(/fonts/Raleway-Light.ttf) format('ttf'),
	url(/fonts/Raleway-Light.ttf) format('woff2'),
	url(/fonts/Raleway-Light.ttf) format('woff')
 }

/* Header */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background-color: transparent;
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	box-sizing: border-box;
}
.logo img {
	height: 50px;
}
.burger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	width: 30px;
	height: 20px;
	cursor: pointer;
	z-index: 999;
}
.burger-line {
	width: 100%;
	height: 3px;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
	box-shadow: 4px 4px 6px rgb(0 0 0 / 20%);
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	-ms-border-radius: 1px;
	-o-border-radius: 1px;
	border-radius: 1px;
}

.burger .burger-line:last-child {
	width: 80%;
}

.burger:hover .burger-line {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.burger:hover .burger-line:last-child {
	width: 100%;
}

.burger.close .burger-line {
	background-color: #333;
}

.burger.close .burger-line:first-child {
	-webkit-transform: rotate(45deg) translate(6px, 6px);
	-moz-transform: rotate(45deg) translate(6px, 6px);
	-ms-transform: rotate(45deg) translate(6px, 6px);
	-o-transform: rotate(45deg) translate(6px, 6px);
	transform: rotate(45deg) translate(6px, 6px);
}

.burger.close .burger-line:nth-child(2) {
	opacity: 0;
}

.burger.close .burger-line:last-child {
	width: 100%;
	-webkit-transform: rotate(-45deg) translate(6px, -6px);
	-moz-transform: rotate(-45deg) translate(6px, -6px);
	-ms-transform: rotate(-45deg) translate(6px, -6px);
	-o-transform: rotate(-45deg) translate(6px, -6px);
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Slide-Menu */
.slide-menu {
	position: fixed;
	text-align: right;
	top: 0;
	right: -20rem;
	width: 20rem;
	height: 100%;
	background-color: #fff;
	color: #333;
	box-shadow: -5px 0px 8px rgba(0, 0, 0, 20%);
	z-index: 99;
	-webkit-border-radius: 16% 0 0 30% / 100% 0 0 2%;
	-moz-border-radius: 16% 0 0 30% / 100% 0 0 2%;
	-ms-border-radius: 16% 0 0 30% / 100% 0 0 2%;
	-o-border-radius: 16% 0 0 30% / 100% 0 0 2%;
	border-radius: 16% 0 0 30% / 100% 0 0 2%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.slide-menu ul {
	list-style: none;
	padding: 0 0 0 2rem;
	margin: 50px 0 0 0;
}
.slide-menu li {
	padding: 15px;
}

.slide-menu li:last-child {
	position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 2rem;
}

.slide-menu li a {
	color: #333;
	text-decoration: none;
	font-size: 2.2rem;
}
.slide-menu.active {
	right: 0;
}

/* Main */
main {
	margin: 0 auto;
	margin-top: 60px; /* Ausgleich für margin-top in body*/
	padding: 2rem;
	max-width: 80rem;
	text-align: center;
} 

#so-main {
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

#so-main > div {
    margin: 4rem 0;
}

.container {
    display: flex;
    min-height: 80vh;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.index-container {
	min-height: 90vh;
    padding: 2rem;
    box-sizing: border-box;
}

h1 {
	font-size: 2.4rem;
	text-shadow: 4px 4px 6px rgb(0 0 0 / 20%);
	flex-basis: 100%;
}

h1, h2, h3, a, input, textarea, button, label {
	font-family: 'Waldorf', 'Raleway', Helvetica, Arial, sans-serif;
}

h1, h2, h3, label {
	color: #fff;
	text-shadow: 4px 4px 6px rgb(0 0 0 / 20%);
}

h1, p {
	color: #fff;
}

label {
	font-size: 1.2rem;
}

#question {
	font-size: 2.6rem;
}

#question-hint {
	margin-top: 2rem;
}

#my-input-field {
	flex-basis: 100%;
}

input:focus, button:focus {
    outline: none !important;
}

#input-field, input[type=submit] {
	font-size: 1.2rem;
	padding: 0.2rem 1.4rem;
	color: #fff;
	text-shadow: 2px 2px 6px #333;
	background-color: transparent;
	border: 5px solid #fff;
	box-shadow: 4px 4px 6px rgb(0 0 0 / 20%),
		inset 2px 2px 4px rgba(0, 0, 0, 20%);
	-webkit-border-radius: 8% 20% 4% 25% / 15% 50% 21% 36%;
	-moz-border-radius: 8% 20% 4% 25% / 15% 50% 21% 36%;
	-ms-border-radius: 8% 20% 4% 25% / 15% 50% 21% 36%;
	-o-border-radius: 8% 20% 4% 25% / 15% 50% 21% 36%;
	border-radius: 8% 20% 4% 25% / 15% 50% 21% 36%;
	-webkit-appearance: none;
	appearance: none;
}

#input-field {
	font-size: 24px;
	padding: 10px;
	margin: 10px;
}

input, textarea {
	padding: 10px;
	font-size: 1rem;
	background-color: #fff;
	border: 1px solid #fff;
	box-shadow: 4px 4px 6px rgb(0 0 0 / 20%);
	-webkit-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	-moz-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	-ms-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	-o-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
}

#content-wrapper {
	display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.text-container {
	text-align: left;
}

.image-wrapper {
	display: flex;
    justify-content: center;
	flex-wrap: wrap;
    align-content: flex-end;
    flex-basis: 100%;
}
  
#images-container, #my-name-container, #my-png-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	overflow: scroll;
	background-color: #fff;
	box-shadow: 4px 4px 6px rgb(0 0 0 / 20%);
	-webkit-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	-moz-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	-ms-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	-o-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
}
  
#images-container img, #my-name-container img, #my-png-container img {
	max-width: 100%;
	margin: 0.4rem;
	flex-shrink: 1;
  }

#images-container img, #my-name-container img {
	max-height: 18vw;
}

  #my-png-container img {
	max-height: 10vw;
  }

  #share-container {
	display: flex;
    flex-direction: column;
	padding-top: 3.5rem;
  }

  #download-button-wrapper, .button-wrapper, #share-wrapper {
	display: flex;
	justify-content: center;
    flex-basis: 100%;
  }

  #share-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }

 .share-button {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0.4rem;
    color: #fff;
	text-decoration: none;
    padding: 0.3rem;
	transition: all 0.3s ease-in-out;
	border: 1.5px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
	border-radius: 50%;
}

.share-button:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.mobile-only {
	display: none;
}
  
#download-button, button, .button {
	font-size: 24px;
	max-height: 3rem;
	padding: 5px 10px;
	margin: 10px;
	text-decoration: none;
	border: 4px solid #fff;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.button-outline {
	color: #fff;
	background-color: transparent;
	text-shadow: 2px 2px 6px rgba(51 51 51 / 50%);
	box-shadow: 4px 4px 6px rgba(0 0 0 / 20%), inset 2px 2px 4px rgba(0, 0, 0, 20%);
	-webkit-border-radius: 8% 20% 4% 25% / 15% 50% 21% 36%;
	-moz-border-radius: 8% 20% 4% 25% / 15% 50% 21% 36%;
	-ms-border-radius: 8% 20% 4% 25% / 15% 50% 21% 36%;
	-o-border-radius: 8% 20% 4% 25% / 15% 50% 21% 36%;
	border-radius: 8% 20% 4% 25% / 15% 50% 21% 36%;
}

.button-filled {
	color: #333;
	background-color: #fff;
	box-shadow: 4px 4px 6px rgba(0 0 0 / 20%);
	-webkit-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	-moz-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	-ms-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	-o-border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
	border-radius: 30rem 5rem 30rem 10rem / 0.4rem 5rem 1.2rem 2rem;
}

#download-button:hover, button:hover, .button:hover {
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-ms-transform: scale(1.03);
	-o-transform: scale(1.03);
	transform: scale(1.03);
}

#error-container {
	display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	padding: 2rem;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
	background: rgb(0 0 0 / 80%);
}

#error-text-wrapper {
    flex-basis: 100%;
}

form {
	width: 100%;
}

form input, form textarea {
	margin-top: 0.8rem;
	margin-bottom: 2rem;
}

form input[type=submit] {
	float: right;
	cursor: pointer;
}

  .form-container {
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    text-align: left;
    align-items: stretch;
    justify-content: center;
  }

  
  footer {
	position: block;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	text-align: center;
  }
  
  .footer-container {
	max-width: 960px;
	margin: 0 auto;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0);
  }