.navbar_container{
    width: 100%;
    background-color: black;
    /*border: 2px solid red;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 10;
}

.navbar_logo{
    margin-left: 2%;
}

.navbar_logo p{
    color: white;
    font-weight: bold;
    font-style: italic;
    font-size: 30px;
}

.navbar_links ul{
    list-style: none;
    display: flex;
    /*border: solid 2px white;*/
    justify-content: space-between;
}

.navbar_links li{
    padding: 15px;
    /*border: 2px solid white;*/
}

.navbar_links a{
    color: white;
    text-decoration: none;
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
    transition: 1s;
}

.navbar_links a:hover{
    color: black;
    background-color: white;
    border-radius: 10px;
}
