/* Base styles */
body {
    background-color: black;
    margin: 0; 
    font-family: sans-serif;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    background-color: #111; 
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px; 
}


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

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-link:hover {
    text-decoration: underline;
}

.login {
    display: grid;
    place-items: center;
    color: white;
    background-color: rgb(0, 37, 186);
    height: 32px;
    width: 90px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
}   

.login:hover {
    background-color: rgb(0, 30, 150); 
}

.center-text {
    color: white;
}
