*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}


header{
    position: apsolute;
    width: 100%;
    min-height: 66px;
    background: black;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
   
   
}
header .slika{
    display: flex;
    pointer-events: none;
}
header .logo{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 400;
    pointer-events: none;
}
header .logo h4{
    background: linear-gradient(90deg, blue, yellow);
    background-clip: text;
    color: transparent;
}
header ul{
    position: relative;
    z-index: 2;
}
header li{
    list-style: none;
    position: relative;
    float: left;
   
}
header ul li a{
   
   color: white;
   font-size: 12px;
   padding: 10px 25px;
   border-radius: 15px;
   text-decoration: none;
   display: flex;
   justify-content: space-evenly;
   border: 3px 1px 1px solid rgb(29, 88, 214);
   box-shadow: 3px 1px 1px rgb(27, 5, 150);
  
}
header ul li a:hover{
    transition: ease-in .20s;
    color: yellow;
    border: 1px solid rgb(119, 131, 9);
    box-shadow: 3px 1px 1px rgb(245, 248, 50);
}

header ul li ul{
    padding: 15px 0px;
    position: absolute;
    left: 0;
    width: 150px;
    opacity: 0.5;
    background-color: black;
    display: none;
    z-index: 2;
}
header ul li:hover ul{
    
    display: block;
}
header ul li ul li{
    height: 50px;
    position: relative;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .3);     
}
@media (max-width:900px){
    header{
        padding: 10px 20px;
    }
    header nav{
        position: absolute;
        width: 100%;
        top:66px;
        left: 0;
        background-color: black;
        display: none;
    }
    header.active nav{
        display: initial;
        z-index: 2;
    }
    header nav ul li{
        width: 100%;
    }
    header nav ul li ul{
        position: relative;
        width: 100%;
    }
    header nav ul li:hover{
        background: rgb(36, 35, 35);
    }
    .menuToggle{
        position: relative;
        width:40px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menuToggle:before{
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: white;
        transform: translateY(-12px);
        box-shadow: 0 12px white;
    }
    .menuToggle:after{
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: white;
        transform: translateY(12px);
    }  
header.active .menuToggle:before{
    transform: rotate(45deg);
    box-shadow: 0 0 white;
}
header.active .menuToggle:after{
    transform: rotate(315deg);
    box-shadow: 0 0 white;
}
}


.fotter {
    position:fixed;
	bottom:0;
	left:0;
	width:100%;
	height: 20px;
	color:white;
	justify-content:space-between;
	align-items:center;
	background-color: black;
	text-align:center;
	padding: 20px;
}

@media (max-width:900px){
    .fotter {
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        height: 30px;
        color:white;
        justify-content:space-between;
        align-items:center;
        background-color: black;
        text-align:center;
        font-size: 12px;
        
    }  
}
