body, html {
    margin: 0;
    height: 100%;
    cursor: crosshair;
    text-align: center;
    font-family: Arial, sans-serif;
}

img {
    max-width: 650px;
    height: auto;
    margin-top: 60px;
    margin-bottom: 80px;
}

.linkleiste {
    display: flex;
    gap: 32px;
    margin-left: 450px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.linkleiste a {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 14px;
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.linkleiste a.grau {
    color: gray;
    pointer-events: none;
    text-decoration: none;
}

.linkleiste a:hover {
    color: black;
}

#musicButton {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    // background: #00ffcc;
    background: #ff29df;
    color: black;
    border: none;
    font-family: 'Press Start 2P', monospace;
    cursor: pointer;
    z-index: 1000;
}

.slideshow-container {
    width: 80%;
    margin: 40px auto;
    position: relative;
}

.slide {
    display: none;
    width: 600px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.textblock {
    font-family: 'Press Start 2P', Arial, sans-serif;
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    font-size: 12px;
    line-height: 1.8;
    color: blue;
}

.blink {
    animation: blinken 1s steps(2, start) infinite;
}

@keyframes blinken {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

 

@media (max-width: 800px) {
    img {
        max-width: 100%;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .linkleiste {
        margin-left: 0;
        margin-top: 20px;
        margin-bottom: 40px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .slideshow-container {
        width: 100%;
        margin: 20px auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slide {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        margin: 0;
    }
}

@media (max-width: 500px) {
    .linkleiste {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-bottom: 30px;
    }

    img {
        max-width: 100vw;
        margin-top: 10px;
        margin-bottom: 24px;
    }

    .slideshow-container {
        width: 100vw;
        margin: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slide {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        margin: 0;
    }

   
 
}


