:root {
    --bg: #0b1529;
    --bgSoft: #1f3050;
    --text: #dee4eb;
    --textSoft: #cbd2d9;
}

/* NAVBAR START */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: var(--bg);

}

.links {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #cbd2d9;
    text-decoration: none;
}

.searchButton {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bgSoft);
    color: var(--textSoft);
    padding: 5px;
    border-radius: 10px;
}

.logo {
    font-weight: bold;
    font-size: 24px;
}

a {
    color: #cbd2d9;
    text-decoration: none;
}