body {
    background-color: lightblue;
    margin: 5px;
    box-sizing: border-box;
  }
  
  h3 {
    /* border-style: double;*/
      color: black;
      font-family: "press Start 2P", "consolas";
      font-size: 50px;
      text-align: center;  
 }

 p{
  color: black;
  font-family: 'Times New Roman', Times, serif;
  font-size: 25px;
  text-align: center;
  background-color: lightskyblue;
  width: relative;
  justify-content: center; /* Horizontalno centriranje */
  align-items: center;     /* Vertikalno centriranje */
  position:center;
  margin:auto;
  padding: 15px;
}

  

button{
  position: fixed;
  top: 10px;
  left: 10px;
  border: 5px dotted;
  border-radius: 10rem;
  padding: 10px;
  background-color: lightskyblue;
  font-size: 15px;
  font-style: bold;
  font-family: "press Start 2P", "consolas";
  text-align: center;
 }

 button:hover {
  background-color: lightseagreen;
}

   .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px;
}

  #tražilica {
    margin: 10px;   /*prostor između tražilice i gore i dolje*/
    padding: 10px; /*prostor u tražilici*/
    border-radius: 60rem; /*da budu zaobljeni rubovi*/
    position: relative;
    width: 400px;
    box-sizing: border-box;
    border: 2px solid;
    font-size: 20px; /*sama tražilica*/
}

#lista_gradova {
  list-style: none;
  padding: 0px;
  margin: 20px;
  background-color: lightskyblue;
}

.grad {      /*popis gradova*/
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  font-size: 20px;
  padding: 10px;
  border: 2px solid;
  animation: fadeIn 0.5s ease-in-out;
}


@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
   