/* Grundlegendes Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background: url("container_bg.jpg") no-repeat center center fixed;
  background-size: cover;
}

/*H1 Überschrift */
h1 {
  text-align: center;
  text-transform: uppercase;
  color: #1874CD;
}

/*H2 Überschrift */
h2 {
  text-align: center;
  text-transform: uppercase;
  color: #787878;
}


/* Overlay, das alles mittig zentriert */
.overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* optionaler dunkler Filter */
}

/* Das zentrierte Fenster (Card) */
.card {
/* background-color: rgba(0, 0, 0, 0.6); */ /* Halbtransparente Hintergrundfarbe, damit der Text gut lesbar bleibt */  
 background-color: white; 
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Kopfleiste mit Logo */
.card-header {
  background-color: #f4f4f4;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}

.logo {
  max-height: 100px;
}

/* Textbereich */
.card-body {
  padding: 20px;
  text-align: center;
  font-size: 16px;
  color: #333;
}