body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #8ecae6;
    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: 40%; left: 29%; }
.button2 { top: 5%; left: 30%; }
.button3 { top: 5%; right: 5%; }
.button4 { top: 30%; left: 10%; }
.button5 { top: 30%; left: 45%; }
.button6 { top: 30%; right: 10%; }
.button7 { bottom: 20%; left: 20%; }
.button8 { bottom: 20%; right: 20%; }
.button9 { top: 10%; right: 32%; }


/* 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; }
}

/* Footer-Stil */
.invisible-link {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8); /* Dunkler Hintergrund */
  color: white;
  opacity: 0; /* Startet unsichtbar */
  font-size: 1.2rem;
  animation: blinkText 10s ease-out forwards, colorChange 10s infinite;
}

.invisible-link a {
  text-decoration: none;
  color: inherit; /* Erbt die Textfarbe */
  font-weight: bold;
}

@keyframes blinkText {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5); /* Vergrößert den Text */
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes colorChange {
  0% {
    color: #ff0000; /* Rote Farbe */
  }
  25% {
    color: #00ff00; /* Grüne Farbe */
  }
  50% {
    color: #0000ff; /* Blaue Farbe */
  }
  75% {
    color: #ff00ff; /* Magenta */
  }
  100% {
    color: #ff0000; /* Rote Farbe zurück */
  }
}
