body {
    background: url("") no-repeat center center fixed;
    background-size: cover;
    font-family: 'Press Start 2P', cursive;
    color: white;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1, h2 {
    color: white;
    margin-top: 30px;
    font-size: 24px;
}

p {
    font-size: 16px;
    line-height: 1.5;
}

.box {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 20px;
    margin: 20px auto;
    width: 85%;
    border-radius: 0;
    color: white;
    box-shadow: 0 0 20px rgba(128, 128, 128, 1); /* Grau */
    text-align: left;
    position: relative;
}

/* Bilder proportional und bildschirmbreit anpassen */
.box img {
    width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
}

.main-image {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    box-shadow: 0 0 20px rgba(128, 128, 128, 1); /* Grau */
}

a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.2s ease;
    font-size: 16px;
}

a:hover {
    color: magenta;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 20px auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    box-shadow: 0 0 10px magenta;
}

.back-button {
    display: inline-block;
    padding: 12px 24px;
    background: magenta;
    color: black;
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 0 10px white;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: white;
    color: magenta;
    box-shadow: 0 0 20px magenta;
}

@media screen and (max-width: 600px) {
    body {
        padding: 10px;
    }

    .box {
        width: 95%;
        padding: 15px;
    }

    p, h2 {
        font-size: 14px;
    }

    .back-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}
