/* Grundlayout */
body {
    font-family: Arial, sans-serif;
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Hauptcontainer */
.container {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 30px;
    text-align: center;
    max-width: 700px;
    width: 90%;
    animation: fadeIn 0.8s ease-in;
}

/* Logo */
.logo {
    margin-bottom: 20px;
}
.logo img {
    width: 100px;
}

/* Typografie */
h1 {
    color: #d9534f;
    font-size: 28px;
    margin-bottom: 15px;
}
p {
    font-size: 17px;
    line-height: 1.6;
    margin: 10px 0;
}

/* Tipps */
.tips {
    margin-top: 25px;
    text-align: left;
}
.tips h2 {
    font-size: 20px;
    color: #0275d8;
    margin-bottom: 10px;
}
ul {
    padding-left: 20px;
    list-style-type: disc;
}
ul li {
    margin-bottom: 10px;
}

/* Hinweistext */
.note {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Button */
.btn {
    margin-top: 25px;
    display: inline-block;
    background: linear-gradient(135deg, #0275d8, #025aa5);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    transition: background 0.3s ease;
}
.btn:hover {
    background: linear-gradient(135deg, #025aa5, #014682);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

