@import url('https://fonts.googleapis.com/css2?family=Sedan:ital@0;1&display=swap');
body{
    font-family: "Sedan", serif;
    background-color: #141E46;
    background-image: url(pozadina.jpg);
    background-size: cover;
    color: #FFF5E0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}
*{
    box-sizing: border-box;
}
.container{
    max-width: 1200px;
    background-color: #8DECB4;
    border-radius: 10px;
    margin: auto;
}
header{
    background-color:#41B06E; 
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.navbar {
    overflow: hidden;
    width: 1200px;
}
.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.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;
}
.navbar a:hover,
.dropdown:hover .dropbtn {
    background-color: #8DECB4;
    border-radius: 10px;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #41B06E;
    min-width: 160px;
    border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {
    background-color: #8DECB4;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.sadrzaj{
    display: flex;
    text-align: justify;
}
.prvi p{
    background-color:#41B06E; 
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
}
img{
    height: 150px;
    margin: 10px;
    border-radius: 10px;
}
.text{
    padding: 10px;
    margin: 10px;
}
.text p{
    background-color:#41B06E; 
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
}
.info{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}
footer{
    background-color:#41B06E; 
    border-radius: 10px;
    width: 100%;
    height: 100px;
}