body{
    background-color: #07b1e6;
}

.uvodni-tekst{
    margin: 0px;
    width: 40%;
    margin-top: 200px;
    color: white;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    text-align: center;
}

.hero-container-regalerija {
    height: 110%;
    width: 100%;
    margin-top: -60px;
    position: relative;
    grid-gap: 40px;
    display: grid;
    grid-template-areas: "totalni";
    background-image: none;
    max-height: 2300px;
}

.totalni{
    animation-name: bg-transition;
    animation-duration: 1s;  
    animation-delay: 1s;
    animation-fill-mode: both;
}

@keyframes bg-transition {
  from {opacity: 0;}
  to { opacity: 1.0;}
}

.prvi{
    margin-top: 100px;
    animation-name: ulet2;
    animation-duration: 1s;  
    animation-delay: 1s;
    animation-fill-mode: both;
}

.drugi{
    margin-bottom: 140px;
    animation-name: ulet2-drugi;
    animation-duration: 1s;  
    animation-delay: 2s;
    animation-fill-mode: both;
}

.prvi, .drugi{
    width: 100%;
    max-width: 700px;
    height: 350px;
    background: #c0c0c0;
    color: black;
}

.prvi:hover, .drugi:hover{
    color: white;
    margin-left: 0%;
    padding-right: 0%;
}

@keyframes ulet1 {
  from {margin-left: -200px; opacity: 0;}
  to {margin-left: 0px; opacity: 1.0;}
}

@keyframes ulet2 {
  from {margin-top: -30px; opacity: 0;}
  to {margin-left: 0px; opacity: 1.0;}
}

@keyframes ulet2-drugi {
  from {margin-top: -330px; opacity: 0;}
  to {margin-left: 0px; opacity: 1.0;}
}

.uvodni-tekst h2{
    width: 100%;
    max-width: 2000px;
}

.uvodni-tekst h2 span{
    background-color: #33bfff;
    line-height: 1.3;
}
    
.uvodni-tekst p{
    color: #494949;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.5;
}

#navbar{
    animation-name: ulet3;
    animation-duration: 2s;  
    animation-delay: 2s;
    animation-fill-mode: both;
}
    
@keyframes ulet3 {
  from {margin-top: -70px;}
  to {margin-top: 00px;} 
}

.blog{
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-top: -30%;
    max-width: 700px;
    padding: 50px;
    background-color: black;
    color:  white;
    font-family: 'Archivo Narrow', sans-serif;
    animation-name: bg-transition;
    animation-duration: 1s;  
    animation-delay: 1s;
    animation-fill-mode: both;
}

.post{}