
body {
    background-image: url("../images/bglandscape.png");
    background-size: cover; /* Cover ensures the background covers the entire body */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat;
    height: 100vh;
    padding: 0;

}

@media screen and (orientation: portrait) {
    /* Im Hochformat wird nur das Hochformat-Bild angezeigt */
    body {
        background-image: url("../images/bgportrait.png");

    }

}

@media screen and (orientation: landscape) {
    /* Im Querformat wird nur das Querformat-Bild angezeigt */
    body {
        background-image: url("../images/bglandscape.png");

    }
}

.content {
    margin-top: 5px;
    border-radius: 10px;
    background: rgb(204, 204, 204); /* Fallback for older browsers without RGBA-support */
    background: rgba(204, 204, 204, 0.5);
    background: rgb(110, 238, 255); /* Fallback for older browsers without RGBA-support */
    background: rgba(110, 238, 255, 0.5);

}

.content h1 {
    margin: 0 15px;
    padding: 0;
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: 0.5rem;
    text-align: center;
    color: #6eeeff;
    color: white;
    z-index: 100
}

.content p {
    margin: -10px 0 0 0;
    padding: 0 0 0 0.3rem; /*top right bottom left*/
    letter-spacing: 0.6rem;
    font-size: 0.6rem;
    text-align: center;
    text-transform: uppercase;
    color: #6eeeff;
    color: white;
    z-index: 100;
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .content {
        margin-top: 10px;
    }

    .content h1 {
        margin: 0 35px;
        font-weight: 900;
        font-size: 3rem;
        letter-spacing: 0.5rem;
    }

    .content p {
        margin: -10px 0 0 0;
        padding: 0 0 0 0.4rem; /*top right bottom left*/
        letter-spacing: 0.8rem;
        font-size: 0.8rem;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .content {
        margin-top: 25px;
    }

    .content h1 {
        margin: 0 35px;
        font-weight: 900;
        font-size: 4.5rem;
        letter-spacing: 0.5rem;
    }

    .content p {
        margin: -10px 0 0 0;
        padding: 0 0 0 0.45rem; /*top right bottom left*/
        letter-spacing: 0.9rem;
        font-size: 0.9rem;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .content {
        margin-top: 25px;
    }

    .content h1 {
        margin: 0 35px;
        font-weight: 900;
        font-size: 6rem;
        letter-spacing: 0.5rem;
    }

    .content p {
        margin: -20px 0 0 0;
        padding: 0 0 0 0.55rem; /*top right bottom left*/
        letter-spacing: 1.1rem;
        font-size: 1.2rem;
    }
}


