body{background-color:#667c8a; }

.pozadina {background-image:url("../slike/valentina.jpg");
background-size:cover;
background-position:right top;
 background-repeat: no-repeat;
 
  background-color: #667c8a;
width:100%;
height: auto;
min-height:500px;

}

.prazan_prostor{
  height:25%;
}
.type{font-weight: bold;

color:white;
    font-family: 'Marck Script', cursive;
font-size: 2em;
margin-left:14%;

/*margin-top:25%;*/
}
.type .char{

  visibility: hidden;
  animation: animate 0s steps(2) forwards;
  animation-delay: calc(0.05s * var(--char-index));
}
@keyframes animate{
0%{visibility: hidden;}
100%{visibility: visible;}
}

nav {
  height: 7vh;
  background: #667c8a;
  z-index: 1000;
   font-family:arial; !important
}

.nav-links {
  display: flex;
  list-style: none;
  width: 50%;
  height: 100%;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
 
}

.landing {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing h1 {
  margin: 100px;
  font-size: 50px;
  color: #ae5fce;
}

@media screen and (max-width: 768px) {
  .line {
    width: 30px;
    height: 3px;
    background: white;
    margin: 5px;
  }
  nav {
    position: relative;
    z-index:100;
  }

  .hamburger {
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 1000;
  }

  .nav-links {
  z-index:100;
    position: fixed;
  background: #667c8a;
/*    background: #5b78c7;*/
    height: 100vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(100px at 90% -10%);
    -webkit-clip-path: circle(100px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
  }
  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
     z-index:100;
  }
  .landing {
    flex-direction: column;
  }
  .nav-links li {
    opacity: 0;
  }
  .nav-links li a {
    font-size: 25px;
  }
  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }
  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }
  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }
  li.fade {
    opacity: 1;
  }
}