/*allgemein*/
body {
  margin: 0;
  padding: 0;
}

/* Fonts */
h1 {
  font-family: 'Oswald';
  font-size: 35px;
}

h2 {
  font-family: 'Merriweather';
  font-size: 50px;
}

label{
  font-family: 'roboto';
}

form{
  font-family: 'roboto';
}

option,
input {
   font-family: 'roboto';
}
/* Anpassung für Umfrage-Bereich */
#header h2 {
  width: 50%;
  margin: 0 auto;
  padding-bottom: 100px;
}
#header {
  background-image: url("../images/header.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 16em 0 16em 0;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Button */
/*Formulare (weiter*/
.buttonsend {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  border: 1mm solid;
  font-family: 'Oswald';
  background-color: #0B2D3D;
}
/*Formulare (zurück)*/

.button {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  border: 1mm solid;
  font-family: 'Oswald';
  background-color: #0B2D3D;
}

.button:hover,
.buttonsend:hover {
  background-color: #0C828A;
}


/*Startseite und Abschlussseite*/
.buttontrans {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  border: 1mm solid;
  font-family: 'Oswald';
  background-color: none;
   margin-right: 10px;
}

.buttontrans:hover {
  background-color: #0C828A;
}

/* Footer */
footer {
  background-color: #0B2D3D;
  padding: 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsletter {
  text-align: left; /* Geändert von "center" zu "left" */
  font-family: 'Oswald';
  flex-basis: 33%; /* Geändert von "100%" zu "33%" */
  margin-bottom: 10px;
}

.social-media-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 33%; /* Geändert von "100%" zu "33%" */
  margin: 0 auto; /* Hinzugefügt, um die Icons in der Mitte zu platzieren */
}

.social-media-icons a {
  margin-right: 10px;
}

.social-media-icons img {
  width: 30px;
  height: 30px;
}

.logo {
  width: 50px;
  height: 50px;
  flex-basis: 33%; /* Geändert von "100%" zu "33%" */
  object-fit: contain;
  text-align: right; /* Hinzugefügt, um das Bild nach rechts auszurichten */
}




/* Media Queries Startseite und Abschlussseite*/
@media screen and (max-width: 1170px) {
  /*header*/
  #header {
    height: 100vh;
    padding: 0;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #header h1 {
    font-size: 35px; 
    margin-bottom: 20px; 
  }

  #header h2 {
    font-size: 40px; 
    margin-bottom: 20px; 
  }

  button {
    padding: 8px 16px;
      color: #fff;
    border: none;
    border-radius: 3px;
   
  }
  
  
}



 /*Personalien*/

 .bodyperso {
  display: flex;
}

.left {
  width: 50%;
  height: 100vh;
  background-color: #0C828A;
  color: white;
}

.right {
  width: 50%;
  height: 100vh;
}

.right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

form {
  margin: 20px;
}

h1 {
  padding-left: 20px;
}

.season,
.continent,
input[type="link"],
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="date"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

input[type="radio"] {
  margin-right: 5px;
}

.plz-ort {
  display: flex;
}

.plz-container,
.ort-container {
  width: 50%;
}

.error-text {
  color: yellow;
  font-weight: bold;
}