html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
    font-family: Arial, Helvetica, sans-serif;
}

/* Hero Image */

.center-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;         
    min-height: -webkit-fill-available;
    object-fit: cover;
    object-position: 84% 0%;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    
}

/* Textblock (Desktop) */

.textblock {
    position: absolute;
    bottom: calc(35px + env(safe-area-inset-bottom));
    right: calc(50px + env(safe-area-inset-right));
    text-align: center;
    line-height: 1;
    font-size:  16px;
    font-weight: 600;
    letter-spacing: 1%;
    color: #f8f32b;
        text-shadow: 0px 0px 1px #f8f32b;

}

.title {font-size: 24px;}

/* Links */

a {
    color: #f8f32b;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* iPhone / kleine Screens */

@media (max-width: 768px) {

    .textblock {
        left: 50%;
        right: auto;
        bottom: calc(35px + env(safe-area-inset-bottom));
        transform: translateX(-50%);
    }


}

@media (max-width: 450px) {

    .center-image {
        border-radius: 8px;
        overflow: hidden;
    }

}