body {
  background-color: #222326;
  color: white;
  font-family: 'Sen', Arial, Helvetica, sans-serif;
  text-align: center;
  background-image: url('https://www.ko3nigsegg.de/pics/icvjm.jpg'); /* Dein Bildpfad hier */
  background-size: cover; /* Bild deckt den gesamten Bereich ab */
  background-position: center; /* Bild ist zentriert */
}

button {
  background-color: white;
  border-radius: 12px;
  border: none;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 2px;
  font-weight: bold;
}

p {
  font-weight: normal;
  color: #99aab5;
}

h5 {
  color: #99aab5;
}

h1 {
  /*border-bottom-style: solid;
  border-bottom-color: #99aab5;
  border-bottom-width: 1px;*/
}

select {
  font-family: 'Sen', Arial, Helvetica, sans-serif;
  font-size: 24px;
  border-radius: 12px;
  background-color: #202225;
  border-style: none;
  color: white;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: none;
}

button:active {
  background-color: grey;
}

textarea {
  resize: none;
  border-radius: 12px;
  border: none;
  color: black;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 2px;
  font-weight: bold;
  padding: 10px;
}

img {
  border-radius: 12px;
  margin: auto;
  box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
}

label {
  border-radius: 12px;
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
}

#special {
  background-color: #99aab5;
  border-radius: 12px;
  border: none;
  color: #2c2f33;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  margin: 5px;
  font-weight: bold;
}

a {
  display: inline-block;
  background-color: hsl(225deg 6% 27%);
  color: white;
  padding: 0.2em;
  margin: 0.2em;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
  max-width: fit-content;
}

a:hover {
  color: deepskyblue;
}

a:active {
  box-shadow: none;
  transform: translateY(5px);
}

span {
  color: #3ca45c;
  background-color: #202225;
}

#copy {
  font-size: 20px;
  background-color: #5865F2;
  color: white;
}

#copy:active {
  background-color: #848de8;
}

.reset {
  background-color: #ee4245;
  color: white;
  padding: 0;
}

.reset:active {
  background-color: #cd1316;
}

.highlighted {
  background-color: hsl(225deg 6% 22%);
  border-radius: 12px;
  padding: 1px;
  box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
}

main {
  display: flex;
  flex-direction: column;
  min-height: 95vh;
  max-width: 850px;
  margin: 0 auto;
  padding: 20px;
  justify-content: center;
  box-sizing: border-box;
  background-image: url('path-to-your-image.jpg'); /* Dein Bildpfad hier */
  background-size: cover; /* Bild deckt den gesamten Bereich ab */
  background-position: center; /* Bild ist zentriert */
}

main > div {
  background-color: #2c2f33;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
  padding: 20px;
}

.popup {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #888888; /* Grau */
  color: #fff;
  padding: 16px 32px;
  border-radius: 5px;
  font-size: 20px;
  opacity: 0.9;
  animation: fadeInOut 5s ease-in-out; /* 5 Sekunden */
}

@keyframes fadeInOut {
  0% { 
  opacity: 0; 
  }
  50% { 
  opacity: 0.9; 
  }
  100% { 
  opacity: 0;
  }
}

.date-input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.date-input textarea {
  font-size: 16px;
  padding: 6px 10px;
  height: auto;
  line-height: 1.2;
  resize: none;
  border-radius: 12px;
  border: none;
  text-align: center;
  font-weight: bold;
  width: auto;
  box-sizing: border-box;
}

.date-input span {
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  height: 100%;
}