/* Hier wird der allgemeine Stil der Webseite definiert */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #050d27;
    min-height: 100vh; /* Setzt die Mindesthöhe des body-Elements auf die volle Höhe des Viewports */
    display: flex;
    flex-direction: column; /* Definiert die Anordnung der Hauptachsen */
}

header {
    background-color: #081644; /* Blau */
    padding: 20px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #ffffff; /* Weiß */
    text-decoration: none;
}

.content {
    flex: 1; /* Nimmt den verbleibenden Platz ein */
    padding: 20px;
    background-color: #050d27;
}

footer {
    background-color: #081644; /* Lila */
    color: #ffffff; /* Weiß */
    text-align: center;
    padding: 10px 0;
}

h1 {
    color: #0d2369;
}

p {
    color: #757575;
}

.box {
    display: flex;
    width: 100%;
    border: 2px solid #fff; /* Weiße Umrandung */
    border-radius: 8px; /* Abgerundete Ecken */
    overflow: hidden; /* Verhindert das Herausragen von Inhalten */
}

.video {
    flex: 1;
}

.description {
    flex: 1;
    padding: 20px;
}

iframe {
    width: 100%;
}

.download-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.download-box {
    flex: 0 0 30%;
    background-color: #081644; /* Lila */
    color: #ffffff; /* Weiß */
    padding: 20px;
    border-radius: 8px;
}

.download-button {
    display: block;
    background-color: #ffa500; /* Orange */
    color: #ffffff; /* Weiß */
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
}

.download-button:hover {
    background-color: #ff8c00; /* Dunkles Orange */
}

.button {
    display: inline-block;
    background-color: #081644; /* Lila */
    color: #ffffff; /* Weiß */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #2f1a65; /* Dunkleres Lila beim Hover */
}

.button-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.k-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.k-box {
    flex: 0 0 30%;
    background-color: #081644; /* Lila */
    color: #ffffff; /* Weiß */
    padding: 20px;
    border-radius: 8px;
}