/* Basis-Stile */
body {
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

/* Container für den Inhalt */
.container {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    animation: fadeIn 1.5s ease-in-out;
}

/* Überschrift */
h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Untertitel */
p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Button */
.btn {
    display: inline-block;
    background: #ffcc00;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background: #ffaa00;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

/* Keyframes für Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Bild */
.construction-image {
    width: 100px;
    margin-bottom: 20px;
}
