body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#app {
  text-align: center;
  max-width: 90%;
}

input, button {
  font-size: 1.2em;
  padding: 0.5em;
  margin-top: 0.5em;
  border-radius: 8px;
  border: none;
}

#buttons button {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #989898;
  color: white;
  cursor: pointer;
  box-shadow: 0px 5px 0px 0px #636363;
  border-radius:100px;
  margin-top: 1em;
}



#buttons button:hover {
  background: #666;
    box-shadow: 0px 0px 0px 0px #636363;
    transform: translateY(5px);

}

#passTo {
    font-size: 20pt;
}

#weiterbutton {
  display: block;
  margin: 1rem auto;
  padding: 0.75rem 1.5rem;
  background: #989898;
  color: white;
  cursor: pointer;
  box-shadow: 0px 5px 0px 0px #636363;
  border-radius:100px;
  margin-top: 1em;
}

#weiterbutton:hover {
  background: #666;
    box-shadow: 0px 0px 0px 0px #636363;
    transform: translateY(5px);

}

#restartbutton{
    display: block;
  margin: 1rem auto;
  padding: 0.75rem 1.5rem;
  background: #ba1e1e;
  color: white;
  cursor: pointer;
  box-shadow: 0px 5px 0px 0px #802a2a;
  border-radius:100px;
  margin-top: 1em;
}

#restartbutton:hover {
  background: #9e2a2a;
    box-shadow: 0px 0px 0px 0px #636363;
    transform: translateY(5px);

}

.hidden {
  display: none;
}

#lang-switch {
  margin-bottom: 1em;
}

#lang-switch button {
  background: none;
  font-size: 1.5em;
  margin: 0 0.3em;
  cursor: pointer;
}

#roundInfo {
  transition: opacity 1s ease;
  font-size: 20pt;
}

#startInfo {
    font-size: 20pt;
    font-weight: 800;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.logo {
  display: flex;
  justify-content: center; /* horizontal zentrieren */
  align-items: center;     /* vertikal zentrieren (falls nötig) */
  height: 100px;  
}

#coffee-footer {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: #222;
  color: white;
  padding: 0.5em 1em;
  border-radius: 8px;
  font-size: 0.9em;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
}

#coffee-footer a {
  color: #fff;
  text-decoration: none;
}

#coffee-footer a:hover {
  text-decoration: underline;
}

