body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh; /* višina celega zaslona */
}

.left, .right, .center {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

/* Leva stran */
.left {
    width: 20%;
    background-color: #444;
}

/* Srednja stran z ozadjem */
.center {
    width: 60%;
    background-image: url("background.jpg"); /* Tu daš svojo sliko */
    background-size: cover;
    background-position: center;
}

/* Desna stran */
.right {
    width: 20%;
    background-color: #555;
}
