/* Reset osnovnih margina i paddinga */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Osnovne postavke za telo stranice */
  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    padding: 1rem;
  }
  
  /* Header i navigacija */
  header {
    background-color: #004080;
    color: white;
    padding: 1rem 0;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Glavni sadržaj */
  main {
    height: 70vh;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  main h1 {
    margin-bottom: 1rem;
    color: #004080;
  }
  
  main p {
    font-size: 1.1rem;
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #ddd;
  }

  #welcome_sreen {
      height: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
  }

  .question-container {
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .question {
    color: black;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 500;
}

.score-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
}

.correct-ansfer {
    color: green;
}

.bad-ansfer {
    color: red;
}

.end-game-container {
    height: 70%;
    display: flex;
    align-content: space-between;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20%;
}
.ocena {
    font-size: 26px;
    font-weight: 500; 
}

  .beginTest {
      background-color: red;
      color: white;
      width: 100px;
      height: 100px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      margin: auto;
  }

  .checkAnsfer {
    background-color: lightblue;
    color: black;
    width: 100px;
    height: 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: auto;
  }

  .next-question {
    background-color: yellow;
    color: black;
    width: 150px;
    height: 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: auto;
  }

  .hidden {
      display: none!important;
  }

  .show {
      display:  block!important;
  }