body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.image-div {
    flex: 1;
    background-image: url('LuckyPujcka.png');
    background-size: cover;
    background-position: center;
}
.text-div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
}
#footer {
    position: absolute;
    bottom: 0;
    text-align: center;
    font-style: italic;
    font-size: xx-small;
}
@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }
    .image-div {
        flex: 1;
    }
    .text-div {
        flex: 1;
    }
}