/* Allgemeine Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/kyatfix.jpg.jpg') no-repeat center center fixed; /* Hintergrundbild */
    background-size: cover; /* Füllt den gesamten Bildschirm */
    color: white;
    text-align: center;
    overflow: hidden; /* Verhindert Scrollen */
}

/* Hauptcontainer */
.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5); /* Halbtransparente Überlagerung */
    padding: 20px;
}

.content {
    width: 90%;
    max-width: 600px;
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.content a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
}

.content a:hover {
    text-decoration: underline;
}

/* Kontaktformular */
.contact-form {
    background: rgba(255, 255, 255, 0.9); /* Leicht transparenter Hintergrund */
    color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid #007BFF;
}

.contact-form button {
    width: 100%;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #0056b3;
}
