.nav-button {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #007BFF;
            color: white;
            text-decoration: none;
            border-radius: 50%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            font-size: 18px;
            font-weight: bold;
            z-index: 1000;
        }
        .nav-button:hover {
            background-color: #0056b3;
        }
        .nav-button.left {
            left: 20px;
        }
        .nav-button.right {
            right: 20px;
        }

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #8ecae6, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
    position: relative;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 14px;
    font-style: italic;
}

.title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 50px;
    font-weight: bold;
}

.button {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    cursor: pointer;
    text-align: center;
}

.button img {
    width: 100%;
    height: auto;
    max-width: 120px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
}

.button span {
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.button1 { top: 45%; right: 25%; }
.button2 { top: 5%; left: 30%; }
.button3 { top: 5%; right: 5%; }
.button4 { top: 30%; left: 10%; }
.button5 { top: 65%; left: 35%; }


/* Image-Box */
        .image-box {
            position: absolute;
            bottom: 10px;
            left: 10px;
            text-align: center;
        }
        .image-box img {
            width: 175px;
            height: auto;
        }

        .image-text {
            font-size: 12px;
            margin-top: 5px;
            text-align: center;
        }

               .image-box2 {
            position: absolute;
            bottom: 10px;
            right: 10px;
            text-align: center;
        }
        .image-box2 img {
            width: 450px;
            height: auto;
        }
        .image-text2 {
            font-size: 12px;
            margin-top: 5px;
            text-align: center;
        }
        /* Logo */
        .logo {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 14px;
            font-style: italic;
        }


.box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.box1 { top: 30%; left: 20%; }
.box2 { position: absolute; top: 50%; left: 50%; transform: translate(0%, 0%); }
.box3 { bottom: 30%; left: 20%; }
.box4 { bottom: 30%; right: 20%; }

/* Modal-Styling */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.modal-header h2 {
    margin: 0;
}

.modal-close {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content .job {
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background 0.2s;
}

.modal-content .job:hover {
    background: #f0f0f0;
}

.job-details {
    display: none;
    margin-top: 10px;
}

.job-details img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}
 .box {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px; /* Hälfte der neuen Höhe (100px) */
    margin-left: -150px; /* Hälfte der neuen Breite (300px) */
    width: 300px;
    height: 100px;
    background-color: #007bff;
    color: white;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

        .box:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
        }
        .box1 {
            top: 30%;
            left: 20%;
			}
        .box2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(0%, 0%);
}



        .box3 {
            bottom: 30%;
            left: 20%;
        }
        .box4 {
            bottom: 30%;
            right: 20%;
        }
/* Responsive Anpassungen */
@media (max-width: 768px) {
    .button { width: 100px; }
    .button img { max-width: 100px; }
    .button span { font-size: 12px; }
    .image-box img, .image-box2 img { max-width: 150px; }
}

@media (max-width: 480px) {
    .button { width: 80px; }
    .button img { max-width: 80px; }
    .button span { font-size: 10px; }
    .image-box img, .image-box2 img { max-width: 100px; }
}