 /* Dialog styles */
 .dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.dialog-content {
  width: 720px;
  height: 420px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  overflow-y: auto;
  font-family: 'zabras', Arial, sans-serif;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  word-spacing: 5px;
}

.close-button {
  position: absolute;
  top: 2px;
  right: 16px;
  background: none;
  border: none;
  font-size: 44px;
  cursor: pointer;
  color: #fff;
}

/* Loading and content styles */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.impressum-content a {
  color: black;
  text-decoration: none;
}

.impressum-content a:hover {
  text-decoration: underline;
}
.links-color{
  color: yellow !important;
}

@media (max-width: 1025px) {
  .dialog-content{
    width: 700px;
    height: auto;
  }
  footer a {
    font-size: 16px;
  }
}