

.header{
    display: flex;
    padding: 0 clamp(5px, 10vh, 30px);
    height: clamp(60px, 10vh, 90px);

    align-items: center;
    justify-content: space-between;

    position: sticky;
    left: 0px;
    right: 0px;
    top: 0;

    z-index: 100;

    font-family:Verdana, Geneva, Tahoma, sans-serif;

    box-shadow: 0px 1px 2px rgba(0,0,0,0.3);

    background-color: #f3f3f3;
    border-bottom: solid;
    border-width: 1px;

}

.logo{
    height: 50px;
    border-radius: 50px;
    margin-left: 20px;

}

.right-section{
    display: flex;
    align-items: center;
    
}

.nazwa{
    font-size: clamp(16px, 2vw, 23px);
    font-family: "Google Sans Code", monospace;
    color: transparent;
    text-shadow: 0 0 1px rgba(0,0,0,0.85);
    

}

.nazwa span{
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 500;
    color: rgb(57, 57, 57);
}


.element{

    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: monospace;

    text-align: center;
    line-height: 20px;


    margin: 0px 10px;
    height: 50%;
    align-content: center;
    transition: all 0.25s ease;

}


.divider{
    margin: 0px 0px;
    font-size: 25px;
}

.icon{
    height: 20px;
    margin-right: 5px;
    filter: invert(0%) sepia(3%) saturate(23%) hue-rotate(29deg) brightness(95%) contrast(100%);
}

.element:hover{
        cursor: pointer;
        background-color: black;
        padding: 5px 5px; 
        margin: 5px;
        border-radius: 10px;

}

.element:hover div {
    color: white;
}

.element:hover .icon {
    filter: invert(100%) sepia(100%) saturate(4001%) hue-rotate(185deg) brightness(124%);
}

@media (max-width: 480px) {
    .right-section div{
        font-size: 0px;
    }

    
}




