@media (max-width: 768px) {
    .iwindows {
        width: 100%;
        height: 460px;
    }
    .fixed-image {
            position: fixed;   /* fixiert am Bildschirm */
            bottom: 1px;      /* Abstand vom unteren Rand */
            right: 1px;       /* Abstand vom rechten Rand */
            width: 50px;      /* Bildgröße anpassen */
            z-index: 1000;     /* Bild liegt über anderen Elementen */
        }
}
@media (min-width: 769px) {
    .iwindows {
        width: 600px;
        height: 460px;
    }
    .fixed-image {
            position: fixed;   /* fixiert am Bildschirm */
            bottom: 00px;      /* Abstand vom unteren Rand */
            right: 00px;       /* Abstand vom rechten Rand */
            width: 150px;      /* Bildgröße anpassen */
            z-index: 1000;     /* Bild liegt über anderen Elementen */
        }
}