body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
    min-height: 100vh; /* Zabezpečí, že výška bude aspoň ako výška okna */
}

.images {
    display: flex;
    flex-wrap: wrap;
    max-width: 50%;
    gap: 10px;
}

.images img {
    width: calc(33.33% - 10px); /* 3 stĺpce s medzerami */
    height: auto;
}


.images a {
    display: inline-block;
    width: calc(33.33% - 10px); /* rovnaké ako pre img */
}

.images a img {
    width: 100%;
    height: auto;
    display: block;
}


.title {
    flex: 1;
    text-align: center;
}

.title h1 {
    font-size: 2em;
    text-transform: uppercase;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-shadow: 2px 2px 4px rgb(88, 96, 99);
}


/* Responzívny dizajn pre mobil */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .images {
        max-width: 50%;
        order: 0;
    }

    .images img {
        width: 100%;
    }

    .title {
        order: -1; /* presunie title na začiatok */
        margin-bottom: 20px;
    }
}
