* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Georgia', serif;
  background-color: rgb(255, 238, 221);
  color: #3b2f1d;
  line-height: 1.7;
}

nav {
    display: flex;
    justify-content: center; /* sve u sredini */
    gap: 40px; /* jednaki razmaci između linkova */
    padding: 20px 40px; /* dodatni prostor lijevo i desno */
    max-width: 1000px;
    margin: 0 auto; /* centriraj cijeli nav blok unutar stranice */
    flex-wrap: wrap; /* omogućuje prelijevanje linkova u novi red na manjim ekranima */
  }
  
  nav a {
    text-decoration: underline;
    color: #333;
    font-weight: bold;
    padding: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  
  /* Kad korisnik prijeđe mišem */
nav a:hover {
    color: #006400; /* tamnozelena */
  }
  
  
  /* Kad je link već posjećen */
  nav a:visited {
    color: darkgreen;
  }

  .potpis {
    font-size: small;
  }



  main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
  }
  
  /* Naslov stranice */
  h1 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c1f0f;
    margin-bottom: 2.5rem;
  }
  
  /* Svaka sekcija prednosti */
  section {
    background-color: rgb(254, 246, 232);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  
  section h1 {
    font-size: 1.6rem;
    color: #5b3e1b;
    margin-bottom: 1rem;
  }
  
  section h2 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    color: #7a5128;
  }
  
  section p {
    font-size: 1rem;
    color: #4b3823;
    margin-bottom: 1rem;
  }
  
  ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
  }
  
/* Responsivnost */
@media (max-width: 768px) {
  main {
    padding: 1rem;
  }

  nav {
    gap: 20px;
  }

  section {
    padding: 1.5rem 1rem;
  }
}

