@import url(/assets/css/theme.css);

* {
    margin: 0;
    padding: 0;
}

/* ---header start--- */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    svg {
        height: 51px;
        width: auto;
        margin-right: auto;
        user-select: none;
        margin-left: 10px;
        background: transparent !important;
    }

    ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-right: 50px;
        margin-left: auto;
        list-style-type: none;

        li {
            font-weight: 750;
            margin-left: 10px;
            display: flex;
            align-items: center;
            white-space: nowrap;

            a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                color: #00103e;
            }

            a:visited {
                color: #00103e;
            }

        }

        #signup {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #00103e;
            width: 80px;
            height: 35px;
            border-radius: 11px;

            a {
                color: #ffffff;
                width: 100%;
                height: 100%;
            }

            a:visited {
                color: #ffffff;
            }
        }
    }
}

/* ---header end--- */

/* ---footer start--- */
footer {
    div {
        margin: 0px auto 0px auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px 0px 20px;
        width: 90%;
        height: 50px;
        background-color: #00103e;
        font-weight: 500;

        span {
            color: white;
            font-family: 'Plus Jakarta Sans';

            a {
                color: white;
            }

            a:visited {
                color: white;
            }
        }
    }
}

/* ---footer end--- */