*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
body{
   margin: 0;
   padding: 0;
}
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 ul{
    position: relative;
    z-index: 2;
}
header li{
    list-style: none;
    position: relative;
    float: left;
}
header ul li a{
   
   color: white;
   font-size: 1rem;
   padding: 10px 25px;
   border-radius: 15px;
   text-decoration: none;
   display: flex;
   justify-content: space-between;
  
}
header ul li a:hover{
    transition: ease-in .25s;
    color: blue;
    border: 1px solid rgb(221, 221, 245);
    box-shadow: 3px 1px 1px rgb(82, 81, 161);
}

header ul li ul{
    padding: 15px 0px;
    position: absolute;
    left: 0;
    width: 200px;
    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);     
}
#turnir{
  background-color: rgb(95, 233, 214);
  color: black;
}
#turnir:hover{
  color: blue;
  background-color: black;
}
@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;
    z-index: 2;
}
header.active .menuToggle:after{
    transform: rotate(315deg);
    box-shadow: 0 0 white;
    z-index: 2;
}
}
.center {
    border: 5px solid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    list-style: none;
  }

.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;
}
