* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
    font-family: "Danton", serif;
    font-weight: 300;
    color: #000000;
}

.container {
    max-width: 800px;
    margin: 50px auto 40px auto;
    text-align: center;
    padding: 0 20px;
}

.header-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.text-content {
    text-align: left;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 40px;
}

.headline {
    font-family: "EpocaClassic", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.text-content p {
    margin-bottom: 16px;
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px; /* optional – kannst du auch auf 0 setzen */
    flex-wrap: wrap; /* wichtig für mobile */
}

.logo-row img {
    display: block;
    height: 80px;
    width: auto;
}

/* Mobile */
@media (max-width: 600px) {
    .logo-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .logo-row img {
        height: auto;
        max-width: 100%;
		transform: scale(0.7);
        transform-origin: left center;
    }
}

a {
    color: #000000;
    text-decoration: underline;
}

a:hover {
    opacity: 0.7;
}

@font-face {
    font-family: "Danton";
    src: url("/assets/DANTON-LIGHT.OTF") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "EpocaClassic";
    src: url("/assets/EPOCACLASSIC-LIGHT.OTF") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "EpocaClassic";
    src: url("/assets/EPOCACLASSIC-MEDIUM.OTF") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}