.navbar{
    position: sticky;
    z-index: 1000;
    width: 100%;
    height: 60px;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #0f172a;
    color: white;
}

.navbar .name{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.navbar img{
    height: 50px;
    position: absolute;
    left: 1%;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

.dropdown button{
    cursor: pointer;
    border: none;
    font: inherit;
    font-size: inherit;
    color: white;
    background: #0f172a;
}

.dropdown a{
    font-weight: normal;
    color: black;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #0f172a;
}

.dropdown:hover .dropdown-content {
    font-size: 16px;
    display: block;
    background: rgba(255, 255, 255, 0.7);
    color: black;
    font-weight: bold;
}