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: calc(100vh-100px);
  flex-grow: 1;
}

.impressum {
  position: absolute;
  bottom: 20px;
  right: 20px;
  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;
    bottom: 5px;
    right: 5px;
    max-width: 100%;
    line-height: 1.3;
    text-align: right;
    position: absolute;
  }
}
