/* Mobilni telefoni*/
[class*="col-"] {
  width: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #ffffff;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 21px;
}

body > header {
  display: flex;
  height: 144px;
  background-color: #ffffff;
  color: #000;
  font-size: 17px;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
}

a.logo {
  font-size: 34px;
  font-weight: bold;
  text-decoration: none;
}

nav {
  display: flex;
  height: 34px;
  background: linear-gradient(#606060, #000000);
  font-size: 21px;
  font-weight: bold;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
}

h1 {
  font-size: 34px;
  text-align: left;
}

h2 {
  font-size: 24px;
  text-align: left;
}

h3 {
  font-size: 21px;
  text-align: left;
}

nav > ul {
  display: flex;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
}

nav > ul > li {
  display: flex;
  height: 100%;
  justify-content: flex-start;
  align-items: center;
  border-style: none;
}

#meni-vesti {
  width: 15vw;
}

#meni-blokčejn {
  width: 15vw;
}

nav > ul > li > a {
  display: flex;
  width: 100%;
  /*height: 130%;*/
  justify-content: flex-start;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  /*border-color: blue;
  border-style: solid;*/
  padding-bottom: 0.5em;
  margin-bottom: -0.5em;
}

nav > ul > li > a:hover {
  color: #f5bb07;
  padding-top: 0px;
  padding-bottom: 0.813em;
}

article > header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

main > article {
  background-color: #FFFFFF;
  padding: 1.316vw 2.129vw;
  text-align: left;
  min-height: 800px;
}

ul.žuta-tačka {
  list-style: none;
}

ul.žuta-tačka li::before {
  content: "\2027";
  color: #f5bb07;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

a {
  color: #2496f2;
}

footer {
  display: flex;
  background-color: #000000;
  color: #ffffff;
  height: 89px;
  justify-content: center;
  align-items: center;
}

/* Tableti i mali ekrani*/

.col-0 {display: none;}
@media only screen and (orientation: landscape) and (min-width: 1175px) {
  .col-fi1 {width: 100%}
  .col-fi2 {width: 61.803%}
  .col-fi3 {width: 38.197%}
  .col-fi4 {width: 23.606%}
  .col-fi5 {width: 14.591%}
  .col-fi6 {width: 9.015%}

  body > header {
    height: 144px;
    justify-content: center;
    padding-left: 0px;
  }

  nav {
    height: 89px;
    font-size: 34px;
    font-weight: bold;
    align-content: flex-start;
    justify-content: space-around;
    align-items: center;
  }

  #meni-vesti {
    width: 15vw;
  }

  #meni-blokčejn {
    width: 25vw;
  }

  nav > ul > li > a {
    display: flex;
    width: 100%;
    height: 130%;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    text-decoration: none;
    animation-name: nav-item-shrink;
    animation-duration: 0.2s;
    /*border-color: blue;
    border-style: solid;*/
    padding-bottom: 0.5em;
    margin-bottom: -0.5em;
  }

  nav > ul > li > a:hover {
    color: #f5bb07;
    padding-top: 0px;
    padding-bottom: 0.813em;
    animation-name: nav-item-pop;
    animation-duration: 0.5s;
  }

  @keyframes nav-item-pop {
    0% {
      color: #FFFFFF;
      padding-bottom: 0.5em;
    }
    61.8% {
      color: #f5bb07;
      padding-bottom: 0.813em;
    }
    100% {
      color: #f5bb07;
      padding-bottom: 0.813em;
    }
  }

  @keyframes nav-item-shrink {
    from {
      color: #f5bb07;
      padding-bottom: 0.813em;
    }
    to {
      color: #FFFFFF;
      padding-bottom: 0.5em;
    }
  }

  article > header {
    justify-content: center;
  }

  main > article {
    text-align: justify;
  }
}

/* Računari i veliki ekrani*/

@media only screen and (min-width:1856px) {
  [class*="col-"] {
    display: block;
  }
  .col-xl-fi1 {width: 100%}
  .col-xl-fi2 {width: 61.803%}
  .col-xl-fi3 {width: 38.197%}
  .col-xl-fi4 {width: 23.606%}
  .col-xl-fi5 {width: 14.591%}
  .col-xl-fi6 {width: 9.015%}
}

main {
  display: flex;
  flex-wrap: wrap;
}

.aside-add {
  display: flex;
  height: 300px;
  align-items: center;
  justify-content: center;
  background-color: gray;
}

code {
    background-color: #f3f3f3;
    border-radius: 3px;
    font-family: courier, monospace;
    padding: 1px 9px;
}
kbd {
    color: #ffffff;
    background-color: #000000;
    border-radius: 3px;
    padding: 1px 9px;
}

aside {
  background-color: #f9f9f9;
}

section {
  padding: 0 1.316vw;
}

.read-more {
  display: flex;
  justify-content: flex-end;
}
