header {
    background: #333; /* Assuming you want a black header but not a black block around the logo */
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Aligns items vertically to the center */
    padding: 2px 20px;
    position: relative;
}

#logo {
    width: auto; /* Adjusts width automatically based on the height */
    height: 50px; /* You can adjust the height based on your preference */
    display: block;
    background: transparent; /* Ensures no background color is affecting it */
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    font-size: 16px;
    display: inline;
    padding: 15px 10px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #FFD700; /* Gold color for hover */
}