@font-face {
    font-family: "Akkurat-Bold";
    src: url("AkkuratLLWeb-Bold.woff2");
}

body {
    font-family: Akkurat-Bold, Arial, sans-serif;
    margin: 0;
    padding: 12x;
    background-color: #e6e6e6; /* Angenehmes Grau */
    display: flex; /* Flexbox aktivieren */
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
    height: 100%;
}

.container {
    text-align: center; /* Text zentrieren */
}

.header {
    padding: 36px;
    margin-top: 80px;
}

h1 {
   margin-bottom: 16px; /* Abstand unter dem Titel */ 
}

.language-switcher {
    position: absolute; /* Positionierung für den Sprachwechsel-Button */
    top: 32px; /* Abstand vom oberen Rand */
    right: 32px; /* Abstand vom rechten Rand */
    display: flex;
    flex-direction: row;
}

.language-button {
    font-family: Akkurat-Bold, Arial, sans-serif;
    background-color: #72A603; /* TU Dortmund Grün */
    color: white; /* Weiße Schriftfarbe */
    padding: 12px 16px; /* Innenabstand */
    text-decoration: none; /* Keine Unterstreichung */
    border-radius: 8px; /* Abgerundete Ecken */ 
    width: calc(100% - 40px);
    max-width: 150px;
    margin: 8px;
}

.language-button:hover {
   background-color: #497400;/* Dunklere Farbe beim Hover-Effekt für das TU Grün*/
}

.language-button:active {
    background-color: #595959;
    transform: scale(0.95);/* Button leicht verkleinern bei Klick */
    transition: transform 0.1s ease-in-out;/*Sanfter uebergang*/
}

.button-container {
   display: flex;
   flex-direction: column; /* Buttons untereinander anordnen */ 
   align-items: center; /* Buttons horizontal zentrieren */ 
}

.button {
   background-color: #639A00;/* TU Dortmund Grün*/ 
   color: white;/* Weiße Schriftfarbe*/ 
   padding: 12px 16px;/* Innenabstand*/ 
   text-decoration:none ;/* Keine Unterstreichung*/ 
   
   width :calc(100% - 40px);/* Breite anpassen (40 px für Padding)*/ 
   max-width :300px ;/* Maximale Breite für bessere Darstellung*/
   border-radius :8px ;/* Abgerundete Ecken*/ 
   box-sizing :border-box ;/* Box-Sizing für Padding berücksichtigen*/
   
   margin-bottom :16px ;/* Abstand zwischen den Buttons */  
} 

.button:hover {
   background-color: #497400 ;/* Dunklere Farbe beim Hover-Effekt für das TU Grün*/
}

.button:active {
   background-color: #595959;
   transform: scale(0.95);/* Button leicht verkleinern bei Klick */
   transition: transform 0.1s ease-in-out;/*Sanfter uebergang*/
}

.emoji-container {
     position: absolute;
     bottom :20 px ;/* Abstand vom unteren Rand*/
     right :20 px ;/* Abstand vom rechten Rand*/
     font-size :50 px ;/* Größe des Emojis anpassen*/
}

