/* stylizacja nowego navbara css */


{
    box-sizing: border-box;
}

body
{
    margin: 0;
    padding: 0;
}

.navbar
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0a2b42;
    color: darkgrey;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .5);
}

.navbar-links
{
    width: 90%;
    margin-right: auto;
    margin-left: auto;

}

.navbar-links ul
{
    min-height: 10px;
    width: 100%;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li
{
    font-size: 26px;
    font-weight: bold;
    list-style: none;
    margin-top: auto;
    text-decoration: none;
    /* border: yellow 2px solid; */
}

.navbar-links li:hover
{
    /* color: lightskyblue; */
    margin-bottom: 20px; /* przesunięcie */
    -webkit-text-stroke-color: blue;
    -webkit-text-stroke-width: 1px;
    text-decoration: none;
    color: greenyellow;
    text-shadow: 2px 2px 4px #66ffff;
    /* filter: blur(5px); */
    transition: all 0.5s;
    transform: scale(1.1);
}

/*
.navbar-links li :hover
{

     font-size: 26px;
    font-weight: bold;
    justify-content: space-between;
             color: #33FFFF;
    text-shadow: 2px 2px 4px #66ffff;
             filter: blur(1px);
    transition: all 0.5s;
}
*/

.navbar-links li
{
   /*  color: dodgerblue; */
    color: red;
    /* border: red 3px solid; */
    text-decoration: none;
    -webkit-text-stroke-color: mediumblue;
    -webkit-text-stroke-width: 1px;
    transition: all 0.5s;
}
.navbar-links li a
{
    text-decoration: none;
    /* color: dodgerblue; */
    /* color: #66ffff */
    font-weight: bold;
    -webkit-text-stroke-color: mediumblue;
    -webkit-text-stroke-width: 1px;
}

.aactive_txt
{
    font-size: 30px;
    text-decoration: none;
    color: #33FFFF;
    -webkit-text-stroke-color: mediumblue;
    text-shadow: 2px 2px 4px #66ffff;
     /* background-color: orange; */

}

.aactive_txt a
{
    color: blue;
}


.hamburger /* toggle-button */
{
    position: absolute;
    top: .75rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    /* border: rebeccapurple; */
}

.hamburger .bar
{
    height: 3px;
    width: 100%;
    background-color: ghostwhite;
    border-radius: 10px;
}

@media(max-width: 1200px)
{
    .hamburger
    {
        display: flex;
    }

    .navbar-links
    {
        display: none;
        width: 100%;
    }

    .navbar
    {
        flex-direction: column;
        align-items: flex-start;
        height: fit-content;
    }

    .navbar-links ul
    {
        width: fit-content;
        flex-direction: column;
        padding-top: 40px;
    }

    .navbar-links li
    {
        text-align: left;

    }

    .navbar-links li a
    {
        padding: .5rem 1rem;
       /*  border: orange 2px solid; */
        transition: all 0.5s;
        transform: scale(1.1);
    }

    .navbar-links li a:hover
    {
        /* color: red;
        filter: blur(30px); */
        margin-left: 50px;
        margin-bottom: 0;
        transition: all 0.5s;
        transform: scale(1.1);

    }

    .navbar-links.active
    {
        display: flex;
        /* color: red; */
    }

}