/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: Black;
  color: White;
  font-family: Verdana;
}
   
  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .top-bar {
    background: white;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .band-name {
    color: black;
    font-size: 24px;
    font-weight: bold;
    font-family: Verdana
  }

  /* Only needed if you want content below to not hide under the bar */
  body {
    padding-top: 80px;
  }
</style>

<div class="top-bar">
  <div class="band-name">CROWDKILLER NCDC</div>
</div>
    <title>Crowdkiller</title>