body {
  margin: 0;
  padding: 0;
  background-color: #005000;
  color: #66ff33;
  font-family: "Courier New", Courier, monospace;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.intro {
  text-align: center;
  font-size: 1.6em;
  max-height: 300px;
  flex-grow: 1;
}

.impressum {
  font-size: 0.9em;
  line-height: 1.5;
  text-align: right;
  max-width: 90%;
}

.custom-link {
  color: #66ff33; /* same as your other text */
  text-decoration: none;
}

.custom-link:hover {
  text-decoration: none;
  color: #66ff33; /* stays consistent on hover */
}

@media (max-width: 600px) {
  body {
    overflow: hidden;
    align-items: flex-start;
    padding: 10px 10px 0 10px;
  }

  .intro {
    font-size: 0.95em;
    padding: 0;
    margin-bottom: 5px;
    margin-top: 50px;
  }

  .impressum {
    font-size: 0.65em;
    max-width: 100%;
    line-height: 1.3;
    text-align: right;
    position: absolute;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
    right: 10px;
  }
}

@media (min-width: 501px) {
  .impressum {
    position: absolute;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
    right: 20px;
    font-size: 0.9em;
    line-height: 1.5;
    text-align: right;
    max-width: 90%;
  }
}
