/* FONT */
@font-face {
    font-family: 'Mako';
    src: url('/fonts/mako.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

/* RESET */
body {
    margin: 0;
    font-family: 'Mako', sans-serif;
    background: #FFFEFE url("hg.png") no-repeat bottom center;
    background-size: cover;
    min-height: 100vh;
}

/* HEADER */
.header {
    width: 100%;
    background-color: #7e1114;
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    background: #7e1114 url("stripes.png") repeat-y top right;
    display: flex;
    align-items: center;
}

/* MAIN */
.main {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* CONTENT LAYOUT */
.content {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* IMAGE */
.image img {
    width: 100%;
    border-radius: 10px;
}

/* TEXT */
.text h1 {
    color: #7e1114;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text h2 {
    color: #E97F02;
    font-weight: 300;
}

.text p {
    line-height: 1.5em;
}


/* FOOTER */
.footer {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #7e1114;
    text-align: center;
    font-size: 13px;
    color: #333;
}

/* Links im Footer */
.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #7e1114;
    text-decoration: none;
    margin: 0 8px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #E97F02;
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .content {
        flex-direction: column;
        text-align: center;
    }

    .buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-inner {
        justify-content: center;
        text-align: center;
    }
}