/* <!-- Course: SENG 513 --> 
<!-- Date: Nov 10, 2023 --> 
<!-- Assignment 3 -->
<!-- Name: Kai Ho Chak --> 
<!-- UCID: 30147119 --> */

@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Noto+Sans+Display:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,900&display=swap');

body {
    font-family: 'Black Han Sans', sans-serif;
    font-family: 'Noto Sans Display', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
    color: #1c1c1c;
    background-color: #EBEAEA;
}

nav {
    font-family: 'Black Han Sans', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #EBEAEA;
    color: #1c1c1c;
}

.box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none; /* Prevents text selection */
    cursor: pointer; /* Changes the cursor to a hand pointer */
    font-size: 1.8rem;
    text-align: center;
}

#left-nav #right-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

#left-nav span  { 
    margin-right: auto; 
    margin-left: 20px;
}

#right-nav span  { 
    margin-left: auto;  
    margin-right: 30px;
}

#logo {
    font-size: 1.3rem;
    font-weight: 300;
}

#menu {
    font-size: 1.3rem;
}

#create {
    padding: 10px;
    font-size: 1rem;
    color:#EBEAEA;
    background-color: #3e3e3e;
    border-radius: 50px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    display: inline;
    margin-right: 20px;
}

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

#content {
    margin-top: 80px
}