@font-face {
    font-family: 'Ubuntu';
    src: url('/fonts/Ubuntu-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('/fonts/Ubuntu-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    background: #1b3a5b; /* Hex-Farbcode des dunklen Blau aus dem Logo */
    color: #fff; /* Helle Schriftfarbe für guten Kontrast */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}
.container {
    max-width: 600px;
    padding: 20px;
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 16px; /* Rundung an den Ecken hinzugefügt */
}
h1 {
    font-size: 2.5em;
    margin: 20px 0;
    color: #4dc3ff; /* Helles Blau aus dem Logo */
}
p {
    font-size: 1.2em;
    color: #cfe8ff; /* Leicht abgetöntes Hellblau für den Text */
}
.subscribe {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
input[type="email"] {
    padding: 10px;
    font-size: 1em;
    width: 70%;
    margin-right: 16px; /* Abstand zwischen Eingabefeld und Button */
    border: 1px solid #4dc3ff;
    border-radius: 5px;
    background: #fff;
    color: #333;
}
button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background: #4dc3ff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background: #3ba6d8;
}
/* Footer Style */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #1b3a5b;
    text-align: center;
    padding: 10px 0;
}
.impressum {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
}
.impressum:hover {
    color: #4dc3ff;
    text-decoration: underline;
}
