/* Grundlegende Seitengestaltung */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    background-image: url('/background_fotos.png'); 
    background-size: cover;
    background-position: center;
}

h1 {
    color: #333;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    color: #333;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}


/* Container für das Formular */
form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Gestaltung der Eingabefelder */
label {
    font-weight: bold;
    color: #555;
}

input[type="file"] {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #f2f2f2; /* Grau-Silber */
    color: #333; /* Dunkler Text */
    padding: 10px 15px;
    border: 1px solid #2c2c2c; /* Schwarze Umrandung */
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #d0d0d0; /* Etwas dunkleres Grau bei Hover */
}

/* Meldungen nach dem Hochladen */
form p {
    color: #333;
    font-size: 14px;
}

/* Responsives Design */
@media (max-width: 768px) {
    h1 {
        font-size: 20px;
    }

h2 {
        font-size: 18px;
    }	

    form {
        padding: 15px;
        max-width: 350px;
    }

    input[type="file"], input[type="submit"] {
        padding: 8px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 18px;
    }
	
	h2 {
        font-size: 16px;
    }

    form {
        padding: 10px;
        max-width: 100%;
        margin: 0 20px;
    }

    input[type="file"], input[type="submit"] {
        padding: 8px;
        font-size: 12px;
    }
}
