*{
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

body{
    background-color: #12372A;
    font-family: "Lora", serif;
    font-size: 16px;
    margin: 0;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}
header{
  margin-top: 5px;
    border: solid 2px #FBFADA;
    background-color: #436850;
    display: flex;
    justify-content: space-between;
    border-radius: 9px;
    height: 120px;
}
 
 
.row-1-m{
    display: flex;
    flex-wrap: wrap;
}
 
.slika-m{
    flex-basis: 450px;
    flex-grow: 1;
}
.vijest-m {
    flex-basis: 650px;
    flex-grow: 1;
}
 
.row-2-m{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.article1{
  border: solid 2px #FBFADA;
  text-align: justify;
  padding:5px;
  flex-basis: 250px;
  flex-shrink: 1;
  flex-grow: 1;
  background-color: #436850;
  width: 32%;
  border-radius: 9px;
  box-shadow: 0px 3px 10px 2px rgba(154, 154, 154, 0.41);
  margin-right: 10px;
}
.article2{
  border: solid 2px #FBFADA;
  text-align: justify;
  padding:5px;
  flex-basis: 250px;
  flex-shrink: 1;
  flex-grow: 1;
  background-color: #436850;
  width: 32%;
  border-radius: 9px;
  box-shadow: 0px 3px 10px 2px rgba(154, 154, 154, 0.41);
  
}
.article3{
  border: solid 2px #FBFADA;
  text-align: justify;
  padding:5px;
  flex-basis: 250px;
  flex-shrink: 1;
  flex-grow: 1;
  background-color: #436850;
  width: 32%;
  border-radius: 9px;
  box-shadow: 0px 3px 10px 2px rgba(154, 154, 154, 0.41);
  margin-left: 10px;
}
footer{
  display: flex;
  margin-bottom: 5px;
  border: solid 2px #FBFADA;
  background-color: #436850;
  border-radius: 9px;
  height: 120px;
  justify-content: right;
  align-items: end;
}


.dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover,
  .dropdown:hover .dropbtn {
    background-color: #ADBC9F;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: #ADBC9F;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #FBFADA;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  main{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  
img{
  border: 2px solid #FBFADA;
  height: 100px;
  width: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  border-radius: 9px;
}