*{
    box-sizing: border-box;
}
body{
    background-color:  rgb(236, 198, 255);
}
.container{
    margin: 0 auto;
    background-color: #7d88ff;
    max-width: 900px;
    min-height: 900px;
    border-radius: 15px;
}

header{
    background-color: rgb(107, 28, 255);
    display: flex;
    justify-content: space-between;
    border-radius: 15px;
}
.slika{
    margin-left: 10px;
}

main{
    display: flex;
    flex-wrap: wrap;
}
.slajder{
    margin-top: 20px;
    background-color: rgb(140, 236, 255);
    text-align: center;
    padding-top: 10px;
    flex-grow: 1;
    flex-basis: 600px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 20px;
    border-radius: 15px;
}
h3{
    padding-bottom: 70px;
}
.slikaInaslov{
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
}
.slika{
    margin-top: 20px;
    flex-basis: 100px;
}
.tekst{
    background-color: rgb(140, 236, 255);
    flex-basis: 600px;
    margin-top: 20px;
    margin-bottom: 4px;
    text-align: center;
    margin-left: 10px;
    border-radius: 15px;
}
.naslovi{
    display: flex;
}
.tekst{
    background-color: rgb(140, 236, 255);
    margin: 10px;
    text-align: center;
    margin-top: 20px;
    border-radius: 15px;
}
footer{
    background-color: rgb(107, 28, 255);
    text-align: center;
    margin: 10px;
    padding: 5px;
    bottom: 0;
    border-radius: 15px;
}

.navbar {
    overflow: hidden;
    background-color: rgb(223, 184, 255);
    border-radius: 15px;
    width: 145px;
    margin-top: 35px;
    margin-bottom: 10px;
    margin-left: 10px;
    height: 50px;
    margin-right: 12px;
  }
  
  
  .navbar a {
    float: right;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border-radius: 15px;
  }
  

  
  .dropdown {
    _float: left;
    overflow: hidden;
  }
  
  
  
  .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    text-align: center;
    
  }
  
  .dropbtn{
      text-align: center;
  }
  

  
  .navbar a:hover,
  .dropdown:hover .dropbtn {
    background-color: rgb(177, 159, 255);
  }
  
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  

  
  .dropdown-content a {
    float: none;
    color: rgb(0, 0, 0);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  
  .dropdown-content a:hover {
    background-color: hsl(251, 100%, 82%);
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  