:root{
    --black: #0D1821;
    --gray: #373F51;
    --white: #FFFAFB;
    --gold: #FFD700;
    --blue: #1B98E0;
}

*{
    margin: 0;
    padding: 0;
    color: var(--white);
    box-sizing: border-box;
}

li {
    list-style: none;
}

body{
    margin: 0px;
    background-color: var(--black);
}

/* width */
::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #e7e7e7;
    border: 1px solid #cacaca;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); 
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #363636;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

/* ================================navigation================================ */
/* nav{
    position: sticky;
    top: 0;
    background-color: var(--black);
    z-index: 5;

    display:flex;
    justify-content: space-between;
    padding:  20px 100px;
    align-items: center;
    height: 80px;
}
    */
/* nav .navbar-brand{
    border-radius: 5px;
} */
/*
nav ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
nav li {
    display: inline;
    list-style: none;
}
nav li a {
    color: var(--gold);
    text-decoration: none;
} */


/* @media only screen and (max-width: 768px) {
    nav{
       display: none;
    }
    header{
        display: none;
    }
} */

/* ================================footer================================ */


.gray-container{
    /* display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
    padding: 30px 100px;    
     */
    background-color: var(--gray);
    
}

footer ul a{
    text-decoration: none
}