* {
    padding: 0px;
    margin: 0px;
}

body {
    font-family: Tahoma;
    font-size: 11pt;

}

header img {
    width:100%;
}

/* NAVIGACIJA */

nav {font-family: Tahoma;
    height: 70px;
    width: 100%;
    border-bottom: #275070 1px solid;

}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav li {margin-right: 40px;
    margin-top: 25px;
}

nav a{font-weight: bold;
    color: #275070;
    font-size: 20px;
    text-decoration: none;
    padding: 30px;
}

/* SECTION */

section{
    height: 53vh;
    background-color: #d1e2ef;
}
article {
    padding: 50px;
}

article a {
    color:#79a93b;
    text-decoration: none;
}

article h1, h2 {
    color: #275070;
  
    padding-bottom: 25px;
}

aside {font-size: 11pt;
    background-color: #3b79a9;
}
aside h2 {
    color:#ccc;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

section img {
    width: 350px;
    height: 300px;
    padding: 50px;
}

 ul{
    margin-left: 30px;
 }

/* FOOTER */

footer {height:10vh;
    background-color: #275070;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer p {color: #fff;
    text-align: center;
}

footer a {
    color: #79a93b;
}

.mreza {
    display: grid;
    grid-template-columns: repeat(3);
    grid-template-rows: repeat(3);
}

.dio1 {
    grid-column-start: 1;
    grid-column-end: 2;

    grid-row-start: 2;
    grid-row-end: 3;
    
}

.dio2 {
    grid-column-start: 2;
    grid-column-end: 3;

    grid-row-start: 2;
    grid-row-end: 3;
}

.dio3{
    grid-column-start: 3;
    grid-column-end: 4;

    grid-row-start: 1;
    grid-row-end: 4;
    background-color: #3b79a9;

}

.karte {
    display: grid;
    grid-template-columns: repeat(3, 1rf);
    grid-template-rows: repeat(3);
    height: 55vh;
}
.prvi {
    grid-column-start: 2;
    grid-column-end: 3;
    
    grid-row-start: 1;
    grid-row-end: 3;    
}


.drugi {
    grid-column-start: 1;
    grid-column-end: 2;

    grid-row-start: 1;
    grid-row-end: 2;    
}


