<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* =================== PISAVA =================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&amp;display=swap');

/* =================== OSNOVNE NASTAVITVE =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

body {
  background: url("slike/ozadje.jpg") center center / cover no-repeat;
  color: #000;
}

/* =================== OKVIR STRANI =================== */
#okvir {
  width: 940px;
  margin: 0 auto;
}

/* =================== GLAVA STRANI =================== */
header {
  background-color: #fff;
  height: 160px;
  text-align: center;
  padding-top: 20px;
}

h1 {
  color: #d23522;
  font-family: 'Times New Roman', serif;
  font-size: 45px;
  padding: 20px 0;
}

/* =================== NAVIGACIJA =================== */
nav {
  background-color: #fff;
  height: 45px;
  padding: 0 10px;
  clear: both;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}

nav li {
  margin-left: 20px;
}

nav a {
  font-size: 24px;
  color: #d23522;
  text-decoration: none;
  padding: 10px;
  display: block;
}

nav a:hover {
  background-color: rgba(134, 134, 134, 0.3);
}

nav a.active {
  font-weight: bold;
  text-decoration: underline;
}

/* =================== GLAVNI DEL STRANI =================== */
main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

article {
  background-color: #fff;
  flex: 1 1 620px;
  padding-bottom: 20px;
}

aside {
  background-color: #e7f4fd;
  border-radius: 20px;
  padding: 20px;
  width: 300px;
  flex-shrink: 0;
}

/* =================== NASLOVI =================== */
h2, h3 {
  color: #e89127;
  font-family: 'Times New Roman', serif;
  font-size: 22px;
  padding: 10px 20px;
}

h4 {
  color: rgb(230, 69, 59);
  border-bottom: 1px solid gray;
  font-size: 13px;
  padding-bottom: 5px;
}

/* =================== BESEDILO =================== */
p {
  font-size: 14px;
  padding: 10px 20px;
  text-align: justify;
}

ul {
  list-style-type: circle;
  margin: 10px 40px;
}

li {
  margin-bottom: 8px;
}

/* =================== TABELA =================== */
table {
  margin-left: 20px;
  border-collapse: collapse;
}

th, td {
  padding: 5px 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

/* =================== NOGA STRANI =================== */
footer {
  background-color: #002E4C;
  height: 50px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer p.noga {
  color: white;
  font-size: 12px;
  text-align: center;
}

/* =================== SLIKE =================== */
.slikeGalerija,
.galerija img {
  max-width: 100%;
  height: auto;
  margin: 10px;
  transition: transform 0.3s ease-in-out;
}

.galerija img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* =================== OBRAZCI =================== */
form {
  padding-left: 40px;
  padding-bottom: 20px;
}

/* =================== GUMB NA VRH =================== */
button {
  font-size: 14px;
  cursor: pointer;
}

/* =================== ODZIVNOST ZA MOBILNE NAPRAVE =================== */
@media screen and (max-width: 960px) {
  #okvir {
    width: 95%;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  main {
    flex-direction: column;
  }

  aside,
  article {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  #okvir {
    width: 95%;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  main {
    flex-direction: column;
  }

  aside,
  article {
    width: 100%;
  }
}</pre></body></html>