@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary-color: 183, 62, 62;
}

* {
    font-family: "Roboto", sans-serif;
}

body {
    padding: 0;
    margin: 0;
}

.navbar {
    display: flex;
    flex-direction: row;
    gap: 2vw;
    padding: .5vh 0vw;
    background-color: rgb(var(--primary-color));
    align-items: center;
    color: white;
    box-shadow: 2px 2px 2px rgba(var(--primary-color), 0.3);
    width: 100%;
    flex-wrap: wrap;
}

.navbar>h1 {
    all: initial;
    font-family: "Roboto", sans-serif;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo {
    width: 6vh;
}

.login-button {
    background-color: #7f1d1d;
    border: none;
    color: white;
    display: flex;
    flex-direction: row;
    padding: .5vh 1vw;
    border-radius: 4px;
}

.navbar>a {
    color: white;
    text-decoration: none;
    /* no bold */
    font-weight: 400;
}

.navbar>a:hover {
    background-color: #bfbdc3;
    color: black;
}

#csk-navbar {
    margin-bottom: 1rem;
    justify-content: flex-start;

    font-size: 16px;
    /* no bold */
    font-weight: 400;
}

#home-link {
    /* no decorations  */
    text-decoration: none;
    color: white;
}

#content {
    margin: 20px;
}