/*style.css*/
/* Import Schriftarten */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa&family=Oswald&display=swap');

/* Allgemeine Schriftarten und Schriftgrößen */
body {
  font-family: 'Comfortaa', sans-serif;
  font-size: 16px;
  color: #ffa03e;
  /* Hauptschriftfarbe */
  text-align: center;
}

h1,
h2,
h3 {
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

/* Formular-Styles */
form {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
}

input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input [type="password"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button[type="submit"] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #45a049;
}

/* Anker-Styles */
a {
  color: #3f51b5;
  text-decoration: none;
}

a:hover {
  color: #303f9f;
}

/* Allgemeine Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Dropdown Styles */
select {
  width: 100%;
  background-color: #ffa03e;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  font-size: 1.5em;
}

select option {
  font-family: 'Comfortaa', sans-serif;
  line-height: 2em;
}

select option:hover {
  background-color: #ffa03e;
  color: white;
}