/* Zamagljena pozadina za glavnu stranicu */
.blur-background {
    background: url('/images/pozadina.jpg') no-repeat center center fixed;
    background-size: cover;
    filter: blur(8px);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dugmici na glavnoj stranici */
.button-container {
    text-align: center;
    position: absolute;
}

.button-container button {
    padding: 15px 30px;
    font-size: 18px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    transition: all 0.3s ease;
}

.button-container button:hover {
    background-color: #333;
    color: #fff;
}

/* Stil za galeriju slika */
.image-gallery {
    background-color: black;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    text-align: center;
}

.image-gallery .image-container {
    margin-bottom: 10px;
}

.image-gallery img {
    width: 100vw;
    height: auto;
    object-fit: contain;
    display: block;
}
