body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/lokal.jpg");
    background-size: cover;
}

.container {
    max-width: 600px;
    margin: 170px auto auto auto;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
}



.category {
    margin: 30px 10px;
    background: #222222;
    cursor: pointer;
    border-radius: 25px;
    color: white;
    height: 300px;
    align-items: center;
}

.item {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 10px;
    /* margin: 30px 10px; */
    margin-top: 10px;
    background: #222222;
    cursor: pointer;
    border-radius: 25px;
    color: white;
    align-items: stretch;
}

.category {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.category img {
    flex-shrink: 0;
    width: 100%;
}

.item-row{
    display: flex;
    width: 100%;
    height: 30px;
    align-items: center;
}

.category h1 {
    position: absolute;
    text-shadow: 3px 3px 5px #111;
}

.hidden {
    display: none;
}

.language-select {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  select {
    background-color: #1e1e1e;
    color: #fff;
    padding: 8px 12px;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 14px;
  }

  option:disabled {
    color: #888;
  }

.item .description {
    font-size: 0.9em;
    font-style: italic;
    color: gray;
    width: 100%;
    text-align: left;
    align-items: stretch;
}

.back {
    background-color: rgb(65, 41, 30);
    color: wheat;
}

.naziv {
    flex-grow: 1;
    text-align: left;
    /* margin-left: 9px; */
}

.normativ, .cijena {
    width: 80px;
    justify-self: end;
    text-align: right;
}

.normativ {
    font-size: 0.9em;
    font-style: italic;
}

.black {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #181818;
    animation-name: step;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.logo2 {
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    clip-path: inset(0 0 100% 0);
    animation: revealFromMiddle 2s forwards;
}

@keyframes revealFromMiddle {
    0% {
        clip-path: inset(0 0 100% 0);
        transform: translate(-50%, 50%);
    }

    33% {
        
    }

    67% {
        clip-path: inset(0 0 0 0);
        transform: translate(-50%, 0%);
        top: 50%;
    }

    100% {
        clip-path: inset(0 0 0 0);
        transform: translate(-50%, 0%);
        top: 2%;
    }
}

@keyframes step {
    0% {}

    100% {
        translate: 0 100vh;

    }
}