/* 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: white;
  color: black;
  font-family: Verdana;
  margin: 0px;
}

/* colors:
5F0F40 - purple
9A031E - red
E36414 - orange
417B5A - "green"
0F4C5C - "blue"
*/

.top {
  top: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 70px;
  color: white;
  z-index: 2;
  background-image: linear-gradient(to bottom left, #E36414, #9A031E);
}

.sidebar {
  width: 200px;
  height: 100%;
  z-index: 1;
  position: fixed;
  top: 0;
  padding-top: 70px;
  border-right: 1px solid #0F4C5C;
  overflow: hidden;
}

.content {
  padding-top: 70px;
  margin-left: 200px;
  padding-left: 10px;
}