body {
    background-color: black;
    color: gray;
    font-size: 1.25rem;
    line-height: 1.75rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* Cool stuff, defo didn't use chatgpt */
html, body {
    scroll-behavior: smooth;
}  

::-webkit-scrollbar {
    width: 7px
}

::-webkit-scrollbar-thumb {
    background-color: white
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 7px black;
    background-color: black
}

/* Style the navigation bar links */
nav a {
    color: #f2f2f2;
    font-size: 16px;
    padding: 14px 16px;
    text-align: center;
    text-decoration: none;
    transition: color 0.25s ease;
}

/* Change the color of links on hover */
nav a:hover {
    color: #003f82;
}

/* Align navigation bar links to the right */
nav div {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 100%;
}

/* Align logo to the left */
#logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
  }
  
  #logo {
    margin-right: 1150px;
  }
  
  #logo img {
    height: 75px;
    width: 75px;
  }