.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;

    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;

    box-sizing: border-box;
    padding: 0 20px;
    z-index: 1000;

    border-bottom: 3px solid white;
}

.logo {
    height: 40px;
    width: auto;
}

#logo-img {
    cursor: pointer;
    transition: transform 0.6s ease;
}

.spinning {
    transform: rotate(360deg);
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu li a {
    color: white;
    text-decoration: none;
}
