/* Resets & Basis-Einstellungen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1a1a1a;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

/* Container & Responsiv-Verhalten */
.container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.responsive-logo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Jahreszahl Textzeile */
.years {
  font-size: 1.25rem;
  color: #cccccc;
  letter-spacing: 0.1em;
}

/* Link Style */
.link {
  color: #e9651e;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}