.gallery-container {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    padding-left: 10px;
}

.gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
}

.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.column {
    flex: 1 1 calc(50% - 20px); /* Povećava veličinu kolone smanjujući prostor između njih */
    margin: 10px; /* Smanjuje razmak između kolona */
    max-width: calc(50% - 20px);
}

.image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    color: #d4af37;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.text-top {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    z-index: 1;
    text-align: center;
    color: #d4af37;
    font-weight: bold;
    font-size: 24px;
}

.numbers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 13px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.numbers div {
    margin-bottom: 10px;
    text-align: left;
    color: black;
}

.centered-title {
    text-align: center;
    margin: 20px 0 40px;
    font-size: 24px;
    font-weight: bold;
}

.weblokacija {
    color: black;
    text-decoration: none;
}

.weblokacija:hover {
    text-decoration: underline;
}