* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 1000px;
	padding-bottom: 120px;
}

.logo-placeholder {
    width: 220px;
    height: 120px;
    margin: 0 auto 40px;
    border: 2px dashed #b0b0b0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.1rem;
    background: white;
}

h1 {
    font-family: 'titel', Fallback, sans-serif;
    font-size: 5rem;
    margin-bottom: 16px;
    color: #225290ff;
}

p {
    font-family: 'inhalt', Fallback, sans-serif;
    font-size: 2.5rem;
    color: #225290ff;
    line-height: 1.6;
}

.logo {
    max-width: 520px;
    height: auto;
    margin-bottom: 40px;
}

footer {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

footer h1 {
    font-family: 'titel', Fallback, sans-serif;
    font-size: 2rem;
    color: #f09510ff;
    margin-bottom: 6px;
}

footer p {
    font-family: 'inhalt', Fallback, sans-serif;
    font-size: 1rem;
    color: #225290ff;
    line-height: 1.6;
}


@font-face {
    font-family: 'titel';
    src: url('headers.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'inhalt';
    src: url('content.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
