* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.header {
    background-image: url("https://www.popasje.si/foto/glavna_slika.jpg");
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .overlay {
    position: fixed;
    min-height: 100%;
    min-width: 100%;
    left: 0;
    top: 0;
    right: 0%;
    bottom: 0%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
} */

.opis {
    text-align: center;
    /* top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%; */
}

.opis h1 {
    color: whitesmoke;
    font-size: 40px;
}

.opis p {
    color: whitesmoke;
    font-size: 30px;
    line-height: 1.5;
}

.topnav {
    overflow: hidden;
    background-color: #333;
}

.topnav a.selected {
    background-color: #ddd;
    color: black;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.row {
    padding: 20px;
}

.column {
    float: left;
    padding: 10px;
    text-align: center;
}

.column.side {
    width: 33.3%;
}

.column.middle {
    width: 33.3%;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 950px) {

    .column.side,
    .column.middle {
        width: 100%;
    }
}

.footer {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
    text-decoration: none;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover{
    color: rgb(189, 157, 17);
}

#mapid {
    height: 350px;
}


