:root {
    --border-rad: 10px;
}
html {
    background-color: black;
}
body {
font-size: 15px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to bottom, #454545, rgb(26, 26, 26) );
background-size: 100%;
height: 100%;
background-repeat: no-repeat;
left: auto;
top: 5px;
right: auto;
bottom: 5px;
border-radius: 10px;
padding: 5px;

}

h1, h2, h3 {
color: #f08f28;
} 

p, li {
color: white;
}
.subj img {
height: 60px;
}
.social {
text-align: center;
}
.social img{
width: 50px;
}
.footer {
text-align: center;
}
.footer img {
height: 50px;
}

/* DROPDOWN */

.nav {
display: flex;
flex-wrap: wrap; /* prelomi v naslednjo vrstico */
/*justify-content: space-around;*/
background-color: #454545;
}

.dropdown {
display: inline-block;
position: relative;
color: white;
text-align: center;
padding: 6px 6px;
text-decoration: none;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
min-width: 220px;
border-radius: var(--border-rad);
}

.dropdown-content a {
color: black;
padding: 5px 5px;
text-decoration: none;
display: block;
text-align: left;
}

.dropdown-content a:hover {
background-color: #b44f01;
color: white;
border-radius: 7px;
}

.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
background-color: #f08f28;
}

.dropbtn {
min-width: 200px;
min-height: 50px;
padding: 5px;
border-radius: 7px;
font-size: 1.3em;
}

.cookiesDiv {
display: block;
/* to pozneje zbriši */
display: none !important;
position: fixed;
bottom: 0;
z-index: 100;
background-color: rgba(41, 41, 41, 0.7);
color: white;
border-radius: var(--border-rad);
text-align: center;
margin: 10px;
padding: 10px;
}

/* POVEZAVE */
.povezave {
display: flex;
flex-wrap: wrap; /* prelomi v naslednjo vrstico */
justify-content: space-around;
background-color: #454545;
text-align: center;
}


#acceptCookies {
align-items: center;
text-align: center;
background-color: #e0e0e0;
height: 30px;
width: 200px;
border-radius: var(--border-rad);
font-size: 1.3em;
}

.cookiesDiv button:hover {
background-color: #9b9b9b;
}


a {
    color: rgb(224, 223, 223);
    text-decoration: none;
    font-weight: bolder;
}
a:hover{
    color:rgb(245, 153, 88);
    text-decoration: underline;
}

a:hover>img{
-moz-transform: rotate(7deg);
-webkit-transform: rotate(7deg);
-o-transform: rotate(7deg);
-ms-transform: rotate(7deg);
transform: rotate(7deg);

}
