<!DOCTYPE html>

<html lang="de">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Fotos hochladen</title>


<style>

body {

    margin: 0;

    padding: 20px;

    font-family: Arial, Helvetica, sans-serif;

    background: #f4f6f8;

    text-align: center;

}


.container {

    max-width: 600px;

    margin: auto;

    background: #ffffff;

    border-radius: 15px;

    padding: 25px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

}


.logo {

    width: 180px;

    max-width: 80%;

    margin-bottom: 20px;

}


h1 {

    color: #003366;

    margin-bottom: 10px;

}


p {

    color: #555;

    line-height: 1.5;

}


.upload-button {

    display: block;

    width: 100%;

    padding: 20px;

    margin-top: 25px;

    background: #0078d7;

    color: white;

    text-decoration: none;

    font-size: 24px;

    font-weight: bold;

    border-radius: 10px;

}


.upload-button:hover {

    opacity: 0.9;

}


.qr-code {

    width: 220px;

    max-width: 80%;

    margin: 30px auto;

}


.footer {

    margin-top: 25px;

    font-size: 12px;

    color: #777;

}

</style>


</head>

<body>


<div class="container">


    <img src="VEREINSLOGO.png" alt="Vereinslogo" class="logo">


    <h1>Fotos zur Veranstaltung hochladen</h1>


    <p>

        Vielen Dank für eure Unterstützung.<br>

        Über den Button oder den QR-Code könnt ihr eure Fotos direkt auf unseren Server hochladen.

    </p>


    <a class="upload-button"

       href="https://DEIN-UPLOAD-LINK"

       target="_blank">

       📸 Fotos hochladen

    </a>


    <img src="QR-CODE.png" alt="QR-Code" class="qr-code">


    <p>

        Einfach den QR-Code scannen oder den Button antippen.

    </p>


    <div class="footer">

        © Verein Musterstadt e.V.

    </div>


</div>


</body>

</html>