* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000; /* ili bela ako želiš */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
p {
    width: 100%;
    text-align: center;
	font-size:20px;
}
/* Kontejner */
.container {
    width: 100%;
    text-align: center;
}

/* Slike */
img {
    max-width: 100%;
    height: auto;
}

/* Desktop slika default */
.img-desktop {
    display: block;
}

.img-mobile {
    display: none;
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .img-desktop {
        display: none;
    }

    .img-mobile {
        display: block;
    }
}