html {
    cursor: url("cursor.png"), auto;
    background-color: #C995C4;
    padding:0;
    overflow: auto;
    margin: 0;
}
.sidebar {
  text-align: center;
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #C995C4;
  position: fixed;
  height: 100%;
  overflow: auto;
  font-family: "Courier New", "serif";
  cursor: url("cursor.png"), auto;
}
/* Sidebar links */
.sidebar a {
  text-align: center;
  display: block;
  color: #FA0000;
  padding: 16px;
  text-decoration: none;
  font-family: "Courier New", "serif";
  cursor: url("cursor.png"), auto;
}

/* Active/current link */
.sidebar a.active {
  text-align: center;
  background-color: #FA0000;
  color: black;
  font-family: "Courier New", "serif";
  cursor: url("cursor.png"), auto;
}

/* Links on mouse-over */
.sidebar a:hover:not(.active) {
  background-color: #5C3875;
  color: black;
  font-family: "Courier New", "serif";
  cursor: url("cursor.png"), auto;
}

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
.content {
  margin-left: 200px;
  padding:0;/*1px 16px;*/
  height: 2000px;
  background-color: #C995C4;
 /* Centers content vertically */
}

.text {
  text-align: center;
  background-color: #C995C4;
  color: #FA0000;
  font-family: "Courier New", "serif";
}
.img_moved {
position:absolute;
right:100px;
top:200px;
}




