/* -----Responsive Navbar with Links of Same Width*/
* {box-sizing: border-box}

body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    }

.navbar {
  width: 100%;
  background-color: #555;
  overflow: auto;
  position: fixed;
  top: 0;
}

.navbar a {
  float: left;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-size: 17px;
  width: 16.5%; /* Four8 links of equal widths */
  text-align: center;
}

.navbar a:hover {
  background-color: #000;
}


@media screen and (max-width: 300px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* -----kazalo4 */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  float: left;
}

li a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}


/* -----Gallery */

img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}


/* Naslov */
.naslov {
  color: #673ab7ff;
  font-size: 25vw;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 5px 50px;
  color: white;
}
.caption-container a {
  background-color: #222;
  text-decoration: underline overline;
}

/* Style the content */
.glavno {
  background-color:#e6e2d3;
  padding: 10px;
}
.clanek {
  margin: auto;
  max-width:600px
}


/* Style the h2 */
h2 {
    color: green;

}

p {
      font-family: Courier;
  font-size: 25px;
}

/* Container for footer */
.footer {
  text-align: center;
  background-color: #607d8bff;
  padding: 2px 16px;
  color: white;
}
.footer p {
  background-color: #7986cb;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  width: 150px;
}
.footer a {

  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
}
