@font-face {
  font-family: 'Dalton White';
  src: url('dalton-white.otf') format('opentype');
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: #e1f1ff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header-Layout 
.header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}*/

/* Branding links 
.branding {
  display: flex;
  align-items: center;
  font-family: 'Dalton White', sans-serif;
  font-size: 3.5rem;
}

.branding img {
  height: 5rem;
  margin-right: 20px;
}

.brand-title {
  font: inherit;
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: inherit;
  display: inline;
}*/

/* Navigation rechts 
.main-nav a {
  font-size: 3.5rem;
  font-family: 'Dalton White', sans-serif;
  text-decoration: none;
  color: black;
}

.main-nav a:hover {
  text-decoration: underline;
}*/

.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
  position: relative;
}

.download-button {
  padding: 16px 32px;
  font-size: 1.2rem;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.download-button:hover {
  background-color: #0056b3;
}

.short-description,
.long-description {
  max-width: 700px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #222;
  background: white;
  padding: 20px 28px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: left;
  margin: 0 auto;
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider */
.slider {
  position: relative;
  max-width: 90%;
  width: 600px;
  height: 375px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

#slider-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s;
}

.slider-button:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.slider-button.prev {
  left: 10px;
}

.slider-button.next {
  right: 10px;
}

footer {
  background-color: #60b3fc;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.9rem;
}

footer a {
  color: #000;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Optional: Icon-Größe und Abstand */
footer i {
  font-size: 1.2rem;
}

